I just did this CSS hack to make articles on my blog print without the header, sidebar, comments and footer. Felt like sharing.
@media print { <br />
/* If printing the page, get rid of the sidebar and comments */<br />
div#wrapper { width: 100%; }<br />
div#wrapper * { width: auto; }<br />
div#header { margin: 0; padding: 0; display:none !important; }<br />
div#footer { margin: 0; padding: 0; display:none !important; }<br />
div.sidebar { margin: 0; padding: 0; display:none !important; }<br />
div.container { margin: 0; padding: 0; }<br />
.navigation { display: none; }<br />
#blog-title { display: none; }<br />
.comments { display: none; }<br />
}