1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>CSS Test: Absolutely positioned boxes in inlines: positioning at top left</title>
<meta name="description" content="Adapted from the CSS2.1 Conformance Test Suite for dompdf">
<link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
<link rel="alternate" href="http://test.csswg.org/suites/css21_dev/20110323/html4/abspos-inline-003.htm" type="text/html">
<link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/absolute/inline/003.html" type="text/html">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#comp-abspos">
<style type="text/css">
@page { size: 400pt 300pt; }
p { font: 1em monospace; }
.filler { color: silver; }
.absolute { color: white; background: green; position: absolute; top: 0; left: 0; }
.fail { color: yellow; background: red; }
.test { position: relative; }
</style>
</head>
<body>
<p>
<span class="filler">This is filler text. This is filler text. This is filler text.</span>
The test has <span class="test"><span class="absolute">PASSED</span><span class="fail">FAILED</span></span>.
<span class="filler">This is filler text. This is filler text. This is filler text.</span>
</p>
</body>
</html>
|