RetroZilla/layout/html/tests/block/bugs/300816-03.xml
2015-10-20 23:03:22 -04:00

25 lines
1.0 KiB
XML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS 2.1 Test Suite: Positioned inline as absolute containing block</title>
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#containing-block-details"/>
<style type="text/css">
#testBlock { font-family: Ahem; font-size: 20px; line-height: 1; }
#testBlock { position: absolute; top: 100px; }
#hider { position: absolute; background: green; top: -20px; height: 80px;
left: 0; width: 210px; z-index: 1; }
#cb { display: inline; position: relative; background: red; color: red;
padding-left: 100px; padding-right: 50px; padding-top: 20px;
padding-bottom: 40px; }
#test { position: absolute; top: 0; right: 0; left: 0; bottom: 0; background: red; }
</style>
</head>
<body>
<p>There should be no red</p>
<div id="testBlock">
<div id="hider"></div>
<div id="cb"><span id="test"></span>XXX</div>
</div>
</body>
</html>