I am trying to make a print newspaper that is easily generated from my WordPress site. I am trying to design the print template for it, but in order to control specific pages, I need to use the @page
rule.
I read this tutorial, which suggests methods like:
@page :left {
@top-left {
content: "Cascading Style Sheets";
}
}
But when I try this in Firefox 5 (and Chrome 14) print-preview or print, it does not print anything at the top-left. In fact, I can't seem to do anything within the @page
rule.
Am I doing this wrong or is this a CSS3 feature that just hasn't been implemented yet?