blob: d9a0421453aaefd430988bebacb37f75a4eb0c6a [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<!-- This tests that a block with an inline ancestor respects its relative positioning. -->
<head>
<title>CSS Test: Block boxes within inline boxes are affected by positioning</title>
<style type="text/css">
body { overflow: hidden; }
#span1
{
background: yellow;
height: 2in;
position: relative;
display: inline;
width: 2in;
left: 2in;
top: 2in;
}
#span2
{
background: blue;
display: inline;
}
#div3
{
background: orange;
width: 2in;
}
</style>
</head>
<body>
<p>Test passes if the orange box sits atop the blue box and both are in the center of the view.</p>
<span id="span1">
<span id="span2">
<i>
<div id="div3">Filler Text</div>
Filler Text
</i>
</span>
</span>
</body>
</html>