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: Position of floated elements in relation to previous elements</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property"/>
<link rel="match" href="floats-030-ref.xht" />
<meta name="flags" content="image" />
<meta name="assert" content="Outer top of a floating box cannot be higher than the outer top of any block or floated box generated by an element earlier in the source document." />
<style type="text/css">
#d1
{
border: solid 5px black;
margin: 10px;
height: 150px;
}
#span1, img
{
height: 1in;
width: 1in;
}
#span1
{
background-color: orange;
float: left;
margin-top: 10px;
padding-top: 10px;
}
</style>
</head>
<body>
<p>Test passes if the orange box is within the black box, below the words "Filler Text 1", and to the left of both the blue box and the words "Filler Text 2".</p>
<div id="d1">
<div>Filler Text 1</div>
<span>Filler Text 2</span>
<img alt="blue box" src="support/blue15x15.png" />
<span id="span1"></span>
</div>
</body>
</html>