haikuwebkit/LayoutTests/css2.1/t0905-c414-flt-fit-00-d.html

22 lines
672 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: Floating Elements</title>
<style type="text/css">
div, p { color: navy; }
div { border: solid blue; padding: 1em; width: 14em; margin: 10px; }
div p { margin: 0; width: 5em; float: left; }
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" title="9.5 Floats">
</head>
<body>
<p>There should be five numbers, in numerical order, below: on the first line 1, 2 and 3, on the second, 4 and 5.</p>
<div>
<p> 1 </p>
<p> 2 </p>
<p> 4 </p>
3
5                    
</div>
</body>
</html>