| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> |
| 4 <title>CSS Test: Floats and stacking contexts with content</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" /
> |
| 7 <link rel="match" href="floats-041-ref.xht" /> |
| 8 |
| 9 <meta name="flags" content="" /> |
| 10 <meta name="assert" content="The contents of floats are stacked as if fl
oats generated new stacking contexts." /> |
| 11 <style type="text/css"> |
| 12 div div |
| 13 { |
| 14 height: 0.5in; |
| 15 width: 0.5in; |
| 16 } |
| 17 #div1 |
| 18 { |
| 19 background: red; |
| 20 float: left; |
| 21 } |
| 22 #div2 |
| 23 { |
| 24 background: green; |
| 25 display: block; |
| 26 position: relative; |
| 27 z-index: 10; |
| 28 } |
| 29 #div3 |
| 30 { |
| 31 background: red; |
| 32 position: relative; |
| 33 } |
| 34 </style> |
| 35 </head> |
| 36 <body> |
| 37 <p>Test passes if there is no red.</p> |
| 38 <div> |
| 39 <div id="div1"> |
| 40 <div id="div2"></div> |
| 41 </div> |
| 42 <div id="div3"></div> |
| 43 </div> |
| 44 </body> |
| 45 </html> |
| OLD | NEW |