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

20 lines
378 B
HTML

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