| 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: Max-height on absolutely positioned, non-replaced eleme
nts, 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-29 --> |
| 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-max-height-007-ref
.xht" /> |
| 9 |
| 10 <meta name="flags" content="ahem" /> |
| 11 <meta name="assert" content="The height is based on the overall height o
f the content, 'margin-top', 'auto' is set to '0' and solve for 'top', when 'top
' and 'height' are both 'auto' and 'bottom' is not 'auto'." /> |
| 12 <style type="text/css"> |
| 13 #div1 |
| 14 { |
| 15 font: 100px/1 Ahem; |
| 16 height: 400px; |
| 17 position: relative; |
| 18 width: 100px; |
| 19 } |
| 20 #div2 |
| 21 { |
| 22 background: orange; |
| 23 height: 50px; |
| 24 position: relative; |
| 25 top: 50px; |
| 26 width: 100px; |
| 27 } |
| 28 #div3 |
| 29 { |
| 30 background: blue; |
| 31 bottom: 300px; |
| 32 height: auto; |
| 33 margin-bottom: auto; |
| 34 margin-top: auto; |
| 35 max-height: 50px; |
| 36 position: absolute; |
| 37 top: auto; |
| 38 width: 50px; |
| 39 } |
| 40 </style> |
| 41 </head> |
| 42 <body> |
| 43 <p>Test passes if the blue and orange squares have the <strong>same heig
ht</strong>.</p> |
| 44 <div id="div1"> |
| 45 <div id="div2"></div> |
| 46 <div id="div3"> </div> |
| 47 </div> |
| 48 </body> |
| 49 </html> |
| OLD | NEW |