Printing watermarks with CSS
April 6, 2005 12:41 AM
Subscribe
What CSS properties do you need to set to get a DIV to show up on every page of the printed version of a web page?
I'm doing some work for a company that requires a confidentially notice on all printed documents. The notice could be an image but I'd prefer to use a DIV so that the contents of the notice can be easily edited. It would also be nice if the notice wasn't rendered on top of other content. I'm using separate style sheets for web and print versions a-la the wikipedia monobook skin.
posted by mexican to computers & internet (11 comments total)
Basically you set the DIV for the screen CSS to:
display: none;
And for the print CSS to:
display: inline;
posted by snowgoon at 12:45 AM on April 6, 2005