I have a web site with a lot of text. To make it more readable when printed, I'd like to create a paginated two-column layout, that is I want two columns per page and the text of column one should wrap to column two and from that to the next page (instead of cutting two very tall columns into pages):

Wanted   Not Wanted

 1 2       1 4
 ---       ---
 3 4       2 5
 ---       ---
 5 6       3 6

Does someone have a working example for this?

link|improve this question

77% accept rate
is it a static page? – tekknolagi Jan 11 '11 at 8:38
Yes. I can do some magic while I render it to a file that is served or I can add some JavaScript to do something when it's printed. – Aaron Digulla Jan 12 '11 at 11:01
feedback

2 Answers

You can use the @media print css parameter to define different styles only for printing.

If you can show me an example of HTML I can give you a proper solution, but in general you can define your div's or table's with with float:left; under @media print.

link|improve this answer
The HTML is here: philmann-dark.de/haul/… How can you make sure that a DIV doesn't leak over a page boundary? – Aaron Digulla Jan 12 '11 at 11:02
feedback

You could possibly do this with CSS print styling, but you need to be careful with tables as well as floating divs, it doesn't always work. page-break-before

link|improve this answer
The problem is that my DIVs don't fit on a single table. – Aaron Digulla Jan 14 '11 at 11:01
feedback

Your Answer

 
or
required, but never shown

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