I'm experiencing an issue with small paragraphs. As you can see in the picture, i'd like the text to keep flowing down on the left column, but instead the paragraph jumps to the right. I believe this is something related of how the columns are "filled" but for what i see, column-fill property is not supported in Chrome. What alternatives do I have?
Relevant CSS:
#display {
max-width: 120ch;
min-height: 100%;
column-count: 2;
-webkit-column-width: 50ch;
-webkit-column-gap: 3em;
padding: 1em;
}
p,
.texto {
margin: 3em 0 0 0;
font-size: 1.25em;
line-height: 1.25em;
color: rgba(0, 0, 0, 0.8);
}
Relevant HTML:
<div id="display">
<h4>Party Disbanded</h4>
<h1>Crónica</h1>
<p>14 de Goch del 1308 DGGP</p>
<p class="texto">Text here.</p>
</div>