Hi,
I have an HTML webpage that I want to export to pdf. It contains a large block of text, and uses the css options on the div above:
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
(copied from
http://www.w3schools.com/css/css3_multiple_columns.asp)
I'm using two columns, and have enough text to spread over two full A4 pages. Unfortunately, EO.pdf prints the first column from the top of the first page, onto the second. I then have to go back to the previous page to read the second column down. You can imagine the problem as I get more and more pages.
Is there a way to choose to sensibly handle columns of text that go across pages? It ought to wrap up to the top of the next column on the current page, before going on to the next page.
Thanks,
Mike