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

19 lines
476 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div { -moz-column-count:2; -moz-column-gap:0; border:2px solid black; height:200px; }
div.gap { -moz-column-gap:80px; }
span { display:inline-block; width:100px; }
</style>
</head>
<body>
<table cellpadding=0 cellspacing=0 width="1"><tr><td><div>
<span></span>
</div></tr></td></table>
<table cellpadding=0 cellspacing=0 width="1"><tr><td><div class="gap">
<span></span>
</div></tr></td></table>
</body>
</html>