Hi there
I am working on a two column layout, where I have this sort of structure:
The CSS is like this:
When I create a PDF, the text in the parent article fills both columns and the text in the two child articles just fills the first column.
Ideally, I would like the parent article to fill column 1 and the two child articles to fill column 2.
What am I missing?
Thanks
Matt
I am working on a two column layout, where I have this sort of structure:
<article class="two_column">
<h1>Title</h1>
<p>Text…</p>
<article>
<h2>Sub title</h2>
<p>Text…</p>
</article>
<article>
<h2>Sub title</h2>
<p>Text…</p>
</article>
</article>
The CSS is like this:
.two_column {
column-count: 2;
column-gap: 10mm;
column-fill: auto;
}
When I create a PDF, the text in the parent article fills both columns and the text in the two child articles just fills the first column.
Ideally, I would like the parent article to fill column 1 and the two child articles to fill column 2.
What am I missing?
Thanks
Matt