balbuenac / flying-saucer

Automatically exported from code.google.com/p/flying-saucer
1 stars 0 forks source link

Support for column-count #230

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

In the css file, have something like this:
.columns-2 {
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
    column-fill: balance;
    text-align: justify;
    word-wrap: break-word;
}

The html file has a <div class="columns-2">

What is the expected output? What do you see instead?

The div displays text in 2 columns in the html, but there is one single column 
in the generated pdf.

What version of the product are you using? On what operating system?

9.0.4
Windows

Please provide any additional information below.

Original issue reported on code.google.com by dandrome...@gmail.com on 20 Jan 2014 at 10:04