tenfourfox/layout/reftests/columns/pref-width-1c.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

20 lines
439 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div { -moz-column-count:2; -moz-column-width:100px; -moz-column-gap:0; float:left; border:2px solid black; height:200px; }
div.clear { clear:both; }
div.gap { -moz-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>