Mozilla/mozilla/layout/reftests/columns/pref-width-1a.html
roc+%cs.cmu.edu a9b24741e2 Bug 364680. Intrinsic widths for columns. r+sr=dbaron
git-svn-id: svn://10.0.0.236/trunk@230345 18797224-902f-48f8-a5cc-f745e15eee43
2007-07-20 02:21:44 +00:00

20 lines
414 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div { -moz-column-count:2; -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:100px; }
</style>
</head>
<body>
<div>
<span></span><br><span></span>
</div>
<div class="gap clear">
<span></span><br><span></span>
</div>
</body>
</html>