I am designing this site which is for technical engineers to take prints from and the page sizes are varied. When pages are printed tables get cut up into 2 halves which makes it difficult for them to read. Is there any code which can make the prints fit into one A4 sheet per page.

The other solution is that i make PDF's of each page in A4 size and put a 'print this page' button on every page, but that seems a little unprofessional, any ideas?

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Try using the CSS media attribute to specify different CSS for printing.

You also need to bear in mind that each browser will implement printing in its own way (just like CSS rendering).

link|improve this answer
feedback

Use a print CSS. It all depends on how the user will set the print settings in the dialog, and remember, web!=print.

link|improve this answer
feedback

The best way i have found to maximize A4 layouts is to have my CSS for print use % instead of Pixels, this will make sure that no items are out of the A4 print area.

link|improve this answer
feedback

As CK suggested make use of CSS with Media Type as "print". You can learn best practice of using this method on CSS Design: Going to Print.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.