Environmentally-friendly print.css
I ran accross this stylesheet by David Bushell while searching for a simple CSS for printing.
@media only print
{
/* hide every element within the body */
body * { display: none !important; }
/* add a friendy reminder not to waste paper after the body */
body:after { content: "Don't waste paper!"; }
}
Har har har.