我遇到了小段落的问题。正如您在图片中看到的那样,我希望文本在左栏中继续向下流动,但段落会跳到右侧。我相信这与如何“填充”列有关,但就我所见,Chrome 不支持 column-fill 属性。我有什么选择?
相关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);
}
相关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>