1
0
Fork 0
firefox/testing/web-platform/tests/css/css-inline/text-box-trim/text-box-trim-multicol-009-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

33 lines
654 B
HTML

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
.multicol {
columns: 3;
column-fill: auto;
width: 640px;
height: 350px;
gap: 20px;
font-family: Ahem;
font-size: 50px;
line-height: 100px;
orphans: 1;
widows: 1;
background: yellow;
}
.up-half {
position: relative;
top: -25px;
}
</style>
<div class="multicol">
<div class="up-half">
xxx<br>
xxx<br>
xxx<br>
</div>
<div class="up-half" style="break-before:column;">
xxx<br>
xxx<br>
</div>
</div>