Quote:
Originally posted by riis
You can add different stylesheets for screen and print:
<link rel="stylesheet" href="screen.css" media="screen">
<link rel="stylesheet" href="print.css" media="print">
In screen.css you can define the style whichever you like. In print.css you can define the style you wish to see for printed pages. It is also possible to hide buttons, etc, this way on printed page. Give the button an id (or whatever you want), and set the display-attribute of the button in print.css to none.
Other examples are coloring all elements black, eventually width and height of tables, images, etc.
That's just what I've done, thanks though. I was only wondering if the background colors get printed. Thanks Josh.