| 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: Right floated elements margins do not collapse</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/
BrowserBugsSection/css21testsuite/" /> <!-- 2012-04-07 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats" /
> |
| 8 <link rel="match" href="floats-014-ref.xht" /> |
| 9 |
| 10 <meta name="flags" content="" /> |
| 11 <meta name="assert" content="Right floating boxes never collapse with ma
rgins of adjacent boxes or other floats." /> |
| 12 <style type="text/css"> |
| 13 #div1 |
| 14 { |
| 15 border: solid 5px black; |
| 16 height: 232px; |
| 17 width: 232px; |
| 18 } |
| 19 div div |
| 20 { |
| 21 background: blue; |
| 22 height: 96px; |
| 23 margin: 10px; |
| 24 width: 96px; |
| 25 } |
| 26 #div2, #div4 |
| 27 { |
| 28 float: right; |
| 29 } |
| 30 #div3 |
| 31 { |
| 32 float: left; |
| 33 } |
| 34 </style> |
| 35 </head> |
| 36 <body> |
| 37 <p>Test passes if there is twice as much space between the blue squares
as there is between the blue squares and the black container edge.</p> |
| 38 <div id="div1"> |
| 39 <div id="div2"></div> |
| 40 <div></div> |
| 41 <div id="div3"></div> |
| 42 <div id="div4"></div> |
| 43 </div> |
| 44 </body> |
| 45 </html> |
| OLD | NEW |