A print style sheet can be created to go with every Web page on your site. This style sheet would only apply when someone printed your Web page. This would allow you to set specific styles to make your page more printer friendly. You can also do things like hide advertisements and add in special footers or headers when the document is printed.
Simply add a second style sheet to the head of your document with the print styles you would like to apply.
<head>
<link rel="stylesheet" href="styles.css" type="text/css" media="print" />
</head>

