| 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 float with earlier floated siblings</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-043-ref.xht" /> |
| 8 |
| 9 <meta name="flags" content="" /> |
| 10 <meta name="assert" content="A right floated box is to left of earlier f
loated boxes or below the earlier floated element's bottom edge." /> |
| 11 <style type="text/css"> |
| 12 div |
| 13 { |
| 14 border-top: solid 5px black; |
| 15 width: 3in; |
| 16 } |
| 17 span |
| 18 { |
| 19 float: right; |
| 20 height: 1in; |
| 21 width: 1in; |
| 22 } |
| 23 #span1 |
| 24 { |
| 25 background-color: orange; |
| 26 } |
| 27 #span2 |
| 28 { |
| 29 background-color: blue; |
| 30 } |
| 31 </style> |
| 32 </head> |
| 33 <body> |
| 34 <p>Test passes if the orange square is to the right of the blue square a
nd the top edges of both squares touch the black line.</p> |
| 35 <div> |
| 36 <span id="span1"></span> |
| 37 <span id="span2"></span> |
| 38 </div> |
| 39 </body> |
| 40 </html> |
| OLD | NEW |