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: Float is computed to 'none' when element is absolutely positioned</title>
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#dis-pos-flo" title="9.7 Relationships between 'display', 'position', and 'float'" />
<link rel="match" href="../reference/ref-filled-green-100px-square.xht" />
<meta name="assert" content="Float is computed to 'none' when 'position: absolute' is specified." />
<style type="text/css"><![CDATA[
div
{
height: 100px;
width: 100px;
}
div#rel-pos-container
{
position: relative;
width: auto;
}
div#abspos-green-overlapping
{
background-color: green;
float: right;
left: auto;
position: absolute;
top: auto;
}
div#static-red-overlapped
{
background-color: red;
position: static;
}
]]></style>
</head>
<body>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="rel-pos-container">
<div id="abspos-green-overlapping"></div>
<div id="static-red-overlapped"></div>
</div>
</body>
</html>