tenfourfox/layout/reftests/columns/pref-width-1-ref.html

20 lines
378 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>