Files
servo/tests/wpt/css-tests/css21_dev/html4/reference/floats-141-ref.htm

60 lines
849 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<style type="text/css">
p {color: blue;}
div#wrapper
{
border: none 0px;
display: inline-block;
margin: 0em;
padding: 0em;
}
div
{
border: solid thin;
margin: 0.2em;
padding: 0.2em;
}
div#A
{
color: fuchsia;
width: 12em;
}
div#B
{
color: orange;
display: inline-block;
width: 8em;
}
div#C
{
color: orange;
display: inline-block;
width: 4em;
}
</style>
</head>
<body>
<p>C must not be above B.</p>
<div id="wrapper">
<div id="A">A</div>
<div id="B">B</div><div id="C">C</div>
</div>
</body>
</html>