| 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: Absolutely positioned, non-replaced elements, shrink-to
-fit solve for top</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-08-31 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#abs-non-r
eplaced-height" /> |
| 8 <link rel="match" href="absolute-non-replaced-height-007-ref.xht
" /> |
| 9 |
| 10 <meta name="flags" content="ahem" /> |
| 11 <meta name="assert" content="Verify that height is based on the overall
height of the content, 'margin-top' and 'margin-bottom' when set to 'auto' are s
olved to '0' and solve for 'top', when 'top' and 'height' are both 'auto' and 'b
ottom' is not 'auto'." /> |
| 12 <style type="text/css"> |
| 13 #div1 |
| 14 { |
| 15 color: orange; |
| 16 font: 100px/1 Ahem; |
| 17 height: 300px; |
| 18 position: relative; |
| 19 width: 200px; |
| 20 } |
| 21 div div |
| 22 { |
| 23 background: blue; |
| 24 bottom: 200px; |
| 25 height: auto; |
| 26 margin-bottom: auto; |
| 27 margin-top: auto; |
| 28 position: absolute; |
| 29 top: auto; |
| 30 width: 100%; |
| 31 } |
| 32 |
| 33 /* |
| 34 |
| 35 auto (to solve) : top |
| 36 + |
| 37 auto (to solve): margin-top |
| 38 + |
| 39 0 : border-top-width |
| 40 + |
| 41 0 : padding-top |
| 42 + |
| 43 auto (to solve) : height |
| 44 + |
| 45 0 : padding-bottom |
| 46 + |
| 47 0 : border-bottom-width |
| 48 + |
| 49 auto (to solve): margin-bottom |
| 50 + |
| 51 200px : bottom |
| 52 ============= |
| 53 300px : height of containing block |
| 54 |
| 55 " |
| 56 'top' and 'height' are 'auto' and 'bottom' is not 'auto', |
| 57 then the height is based on the content per 10.6.7, |
| 58 set 'auto' values for 'margin-top' and 'margin-bottom' to 0, |
| 59 and solve for 'top' |
| 60 " |
| 61 |
| 62 so this brings: |
| 63 |
| 64 |
| 65 auto (to solve) : top |
| 66 + |
| 67 0 (solved): margin-top |
| 68 + |
| 69 0 : border-top-width |
| 70 + |
| 71 0 : padding-top |
| 72 + |
| 73 100px (solved: based on content) : height |
| 74 + |
| 75 0 : padding-bottom |
| 76 + |
| 77 0 : border-bottom-width |
| 78 + |
| 79 0 (solved) : margin-bottom |
| 80 + |
| 81 200px : bottom |
| 82 ============= |
| 83 300px : height of containing block |
| 84 |
| 85 so top will use 0px |
| 86 |
| 87 */ |
| 88 |
| 89 </style> |
| 90 </head> |
| 91 <body> |
| 92 <p>Test passes if the orange and blue squares have the <strong>same heig
ht</strong>.</p> |
| 93 <div id="div1"> |
| 94 <div>X</div> |
| 95 </div> |
| 96 </body> |
| 97 </html> |
| OLD | NEW |