top-offset-002.xht (1502B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Position 'top' offset property - absolute length value and relative positioning</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-top" /> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#position-props" /> 9 <link rel="match" href="bottom-offset-001-ref.xht" /> 10 11 <meta name="assert" content="The 'top' property, when using an absolute length value (not percentage) for relative positioning, specifies the offset of the box itself." /> 12 <style type="text/css"> 13 #div1 14 { 15 background: blue; 16 height: 1in; 17 width: 1in; 18 } 19 div div 20 { 21 background: white; 22 height: 0.5in; 23 position: relative; 24 top: 0.5in; 25 width: 0.5in; 26 } 27 </style> 28 </head> 29 <body> 30 <p>Test passes if there is a blue square with its bottom-left corner missing.</p> 31 <div id="div1"> 32 <div></div> 33 </div> 34 </body> 35 </html>