1
0
Fork 0
firefox/testing/web-platform/tests/css/css-break/reference/widows-block-in-inline-001-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
381 B
HTML

<!DOCTYPE html>
<style>
.columns {
columns: 3;
column-fill: auto;
line-height: 1;
height: 5em;
orphans: 3;
widows: 3;
}
</style>
<body>
<div class="columns">
<div>
p1l1<br>
p1l2<br>
p1l3<br>
</div>
<div>
p2l1<br>
p2l2<br>
p2l3<br>
p2l4<br>
p2l5<br>
p2l6<br>
p2l7<br>
</div>
</div>
</body>