| 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: Relative positioning and normal flow</title> |
| 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtal
bot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-09-22 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-p
osition" /> |
| 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#choose-po
sition" /> |
| 9 <link rel="match" href="position-relative-001-ref.xht" /> |
| 10 |
| 11 <meta name="flags" content="" /> |
| 12 <meta name="assert" content="Relatively positioned elements lay out in n
ormal flow." /> |
| 13 <style type="text/css"> |
| 14 #span1, #span2 |
| 15 { |
| 16 position: relative; |
| 17 } |
| 18 </style> |
| 19 </head> |
| 20 <body> |
| 21 <p>Test passes if the letters below are all on the same line and they ar
e in alphabetical order.</p> |
| 22 <div> |
| 23 <span id="span1">a</span> |
| 24 <span>b</span> |
| 25 <span id="span2">c</span> |
| 26 <span>d</span> |
| 27 </div> |
| 28 </body> |
| 29 </html> |
| OLD | NEW |