1
0
Fork 0
firefox/layout/reftests/columns/pref-width-1c.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

19 lines
419 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div { column-count:2; column-width:100px; column-gap:0; float:left; border:2px solid black; height:200px; }
div.clear { clear:both; }
div.gap { column-gap:80px; }
span { display:inline-block; width:200px; }
</style>
</head>
<body>
<div>
<span></span><br><span></span>
</div>
<div class="gap clear">
<span></span><br><span></span>
</div>
</body>
</html>