position-relative-004.xht (1543B)
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: Relative positioning dimensions</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-22 --> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-positioning" /> 8 <link rel="match" href="position-relative-004-ref.xht" /> 9 10 <meta name="assert" content="Relative positioning with left or right does not change size of a box." /> 11 <style type="text/css"> 12 div 13 { 14 height: 1in; 15 width: 1in; 16 } 17 #div1 18 { 19 background: orange; 20 position: absolute; 21 } 22 #div2 23 { 24 background: yellow; 25 left: 1in; 26 position: relative; 27 } 28 #div3 29 { 30 background: blue; 31 position: relative; 32 right: -1in; 33 } 34 </style> 35 </head> 36 <body> 37 <p>Test passes if 3 filled squares have the same size and if the yellow square is on the right-hand side of the orange square.</p> 38 <div id="div1"></div> 39 <div id="div2"></div> 40 <div id="div3"></div> 41 </body> 42 </html>