OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <meta charset="utf-8"> |
2 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#containing-block-
details"> | 3 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#containing-block-
details"> |
3 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-
width"> | 4 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-replaced-
width"> |
4 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-position
ing"> | 5 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-position
ing"> |
5 <link rel="author" title="Alan Gresley" href="alan[at]css-class.com"> | 6 <link rel="author" title="Alan Gresley" href="alan[at]css-class.com"> |
6 <link rel="author" title="Boris Zbarsky" href="bzbarsky[at]MIT.EDU"> | 7 <link rel="author" title="Boris Zbarsky" href="bzbarsky[at]MIT.EDU"> |
7 <link rel="author" title="Greg Whitworth" href="gwhit[at]microsoft.com"> | 8 <link rel="author" title="Greg Whitworth" href="gwhit[at]microsoft.com"> |
8 <link rel="author" title="Gérard Talbot" href="www-style[at]gtalbot.org"> | 9 <link rel="author" title="Gérard Talbot" href="www-style[at]gtalbot.org"> |
9 <meta content="If the element has 'position: absolute' and in the case that the
ancestor is an inline element, the containing block is the bounding box around t
he padding boxes of the first and the last inline boxes generated for that eleme
nt. For relatively positioned elements, 'left' and 'right' move the box(es) hori
zontally, without changing their size. 'Left' moves the boxes to the right, and
'right' moves them to the left." name="assert"> | 10 <meta content="If the element has 'position: absolute' and in the case that the
ancestor is an inline element, the containing block is the bounding box around t
he padding boxes of the first and the last inline boxes generated for that eleme
nt. For relatively positioned elements, 'left' and 'right' move the box(es) hori
zontally, without changing their size. 'Left' moves the boxes to the right, and
'right' moves them to the left." name="assert"> |
10 <meta content="ahem" name="flags"> | 11 <meta content="ahem" name="flags"> |
11 | 12 |
(...skipping 25 matching lines...) Expand all Loading... |
37 height: 100px; | 38 height: 100px; |
38 width: 100px; | 39 width: 100px; |
39 } | 40 } |
40 </style> | 41 </style> |
41 <p>Test passes if there is no red.</p> | 42 <p>Test passes if there is no red.</p> |
42 <div id="wrapper"><span id="first-inline">X</span><span id="second-inline">X</sp
an> | 43 <div id="wrapper"><span id="first-inline">X</span><span id="second-inline">X</sp
an> |
43 <div id="rel-pos-inline"> | 44 <div id="rel-pos-inline"> |
44 <div id="abs-pos">x</div> | 45 <div id="abs-pos">x</div> |
45 </div> | 46 </div> |
46 </div> | 47 </div> |
OLD | NEW |