relpos-calcs-001.xht (1971B)
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 - auto top = -bottom</title> 5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-09-25 --> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#relative-positioning" /> 8 <link rel="match" href="relpos-calcs-001-ref.xht" /> 9 10 <meta name="assert" content="For a relatively positioned element, if 'top' 11 is 'auto', its used value is minus the value of 'bottom'." /> 12 <style type="text/css"> 13 div { 14 height: 120px; 15 width: 120px; 16 } 17 .container { 18 margin-top: -60px; 19 } 20 .outer { 21 background: red; 22 position: relative; 23 bottom: -50%; 24 /* 25 div.outer's used bottom value is -60px 26 div.outer's used top value is 60px 27 div.outer's computed bottom value is -50% 28 but 29 div.outer's computed top value is auto and not 50%! 30 */ 31 } 32 .inner { 33 background: green; 34 position: relative; 35 top: inherit; 36 /* using inheritance to test computed vs. used */ 37 /* What is inherited is the computed top value of 38 its containing block, which is auto! 39 */ 40 } 41 .control { 42 background: red; 43 margin-top: -60px; 44 } 45 </style> 46 </head> 47 <body> 48 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 49 <div class="container"> 50 <div class="outer"> 51 <div class="inner"></div> 52 </div> 53 </div> 54 <div class="control"></div> 55 </body> 56 </html>