Forum Moderators: not2easy
Is CSS used to create print friendly pages.
Yes. You write a stylesheet that styles your page the way you want it printed, then link it into the <head> of your document like so...
<link href="print.css" rel="stylesheet" type="text/css" media="print" />
Here are some tips to follow when writing the stylesheet...
Obviously not an exhaustive list of things to do, but a good enough place to start.
cEM