I have to make an html document to be rendered as PDF, and the engine only supports CSS 2.1.
A big part of the text should be displayed on 2 columns, which is well achieved with column-count: 2
.
Unfortunately this property is not understood by the PDF engine, so I'd like to know if there are some tricks to do the same thing with CSS 2.1.
Without of course having to handle where the break is, since the text might change.
Thanks.