| 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: Clear floats handled after margin collapsing</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#flow-cont
rol" /> |
| 7 <link rel="match" href="clear-float-003-ref.xht" /> |
| 8 |
| 9 <meta name="flags" content="" /> |
| 10 <meta name="assert" content="Clearance is introduced as spacing above th
e top margin after margin collapsing occurs." /> |
| 11 <style type="text/css"> |
| 12 #div1 |
| 13 { |
| 14 height: 2in; |
| 15 width: 2in; |
| 16 } |
| 17 #div2 |
| 18 { |
| 19 background: red; |
| 20 } |
| 21 #div3 |
| 22 { |
| 23 margin-top: 1in; |
| 24 margin-bottom: 1in; |
| 25 } |
| 26 #div4 |
| 27 { |
| 28 background: green; |
| 29 clear: right; |
| 30 margin-top: -1in; |
| 31 } |
| 32 #div2, #div4 |
| 33 { |
| 34 float: right; |
| 35 height: 1in; |
| 36 width: 1in; |
| 37 } |
| 38 </style> |
| 39 </head> |
| 40 <body> |
| 41 <p>Test passes if there is <strong>no red</strong>.</p> |
| 42 <div id="div1"> |
| 43 <div id="div2"></div> |
| 44 <div id="div3"></div> |
| 45 <div id="div4"></div> |
| 46 </div> |
| 47 </body> |
| 48 </html> |
| OLD | NEW |