blob: 751364d9f114701a1a75dce85688602e85f9bf1c [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>CSS 2.1 Test Suite: Floating Elements</title>
<style type="text/css">
p { color: navy; }
img { background: red; color: yellow; }
.control { padding: 1em; }
.control img { width: 10em; height: 1em; display: block; }
.control img.right { margin-left: 5em; }
.test { width: 15em; margin: 1em; }
.test div { margin: 0; padding: 0; background: red; }
.test img { width: 10em; height: 1em; }
.test img.left { float: left; }
.test img.right { float: right;}
</style>
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" title="9.5 Floats">
</head>
<body>
<p>The two patterns below should be identical, with no red present.</p>
<div class="control">
<img alt="FAIL: You need image support for this test." src="support/square-teal.png" class="left">
<img alt="FAIL: You need image support for this test." src="support/square-purple.png" class="right">
</div>
<div class="test">
<div>
<img alt="FAIL: You need image support for this test." src="support/square-teal.png" class="left">
<img alt="FAIL: You need image support for this test." src="support/square-purple.png" class="right">
</div>
</div>
</body>
</html>