Hi,
It seems like there is an issue with column-fill: auto when one element has page-break-before and column-span.
Given the following HTML:
I would expect that the paragraphs on page 1 would both be in the first column, but they are both balanced on the page. When I remove the column-span from the H2 it works as expected.
Is this expected behaviour? And if it is, is there a way that I could prevent this from happening?
Thanks in advance!
With kind regards,
Rutger
It seems like there is an issue with column-fill: auto when one element has page-break-before and column-span.
Given the following HTML:
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<div style="column-count: 3; column-fill: auto;">
<h1 style="column-span: all;">Header</h1>
<p>Some text some text some text some text some text</p>
<p>Some text some text some text some text some text</p>
<h2 style="page-break-before: always; column-span: all">Header</h2>
<p>Some text some text some text some text some text</p>
</div>
</body>
</html>
I would expect that the paragraphs on page 1 would both be in the first column, but they are both balanced on the page. When I remove the column-span from the H2 it works as expected.
Is this expected behaviour? And if it is, is there a way that I could prevent this from happening?
Thanks in advance!
With kind regards,
Rutger