| 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: Top with a value of 'inherit'</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-09-26 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#propdef-t
op" /> |
| 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#position-
props" /> |
| 9 <link rel="match" href="top-113-ref.xht" /> |
| 10 |
| 11 <meta name="flags" content="" /> |
| 12 <meta name="assert" content="The 'top' property sets a value of 'inherit
', inheriting the value from the parent element." /> |
| 13 <style type="text/css"> |
| 14 body |
| 15 { |
| 16 height: 1in; |
| 17 } |
| 18 div |
| 19 { |
| 20 position: relative; |
| 21 } |
| 22 #div1 |
| 23 { |
| 24 height: 1in; |
| 25 margin-top: -1in; |
| 26 top: 100%; |
| 27 } |
| 28 #div2 |
| 29 { |
| 30 background: red; |
| 31 height: 1in; |
| 32 margin-top: 1in; |
| 33 position: absolute; |
| 34 width: 100%; |
| 35 } |
| 36 #div3 |
| 37 { |
| 38 border-bottom: 1in solid black; |
| 39 top: inherit; |
| 40 } |
| 41 </style> |
| 42 </head> |
| 43 <body> |
| 44 <p>Test passes if there is <strong>no red</strong>.</p> |
| 45 <div id="div1"> |
| 46 <div id="div2"></div> |
| 47 <div id="div3"></div> |
| 48 </div> |
| 49 </body> |
| 50 </html> |
| OLD | NEW |