Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Clear set to 'left' with earlier left floated boxes</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="reviewer" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-07-02 -->
<link rel="match" href="clear-float-004-ref.xht" />
<meta name="assert" content="Boxes with 'clear: left' need to clear earlier left floated boxes." />
<style type="text/css">
span
{
float: left;
height: 1in;
width: 1in;
}
#span1
{
background-color: orange;
}
#span2
{
background: blue;
clear: left;
}
</style>
</head>
<body>
<p>Test passes if the orange square is positioned above the blue square and if there is no red.</p>
<div>
<span id="span1"></span>
<span id="span2"></span>
</div>
</body>
</html>