blocks-025.xht (1718B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Percentage Dimensions in Shrink Wrap Blocks</title> 5 <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/> 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" /> <!-- 2012-10-06 --> 7 <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/block/015.html" type="text/html"/> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-width-property"/> 9 <link rel="match" href="blocks-025-ref.xht" /> 10 11 <style type="text/css"> 12 body, html { margin: 0 0 0 1em; padding: 0; } 13 p { margin: 1em 0; height: 2em; } 14 table, .float, .abspos, .fixpos { border: 0.25em solid; background: red; } 15 table, td { padding: 0; border-spacing: 0; } 16 .float { float: left; } 17 .fixpos { position: fixed; left: 7.5em; top: 4em; } 18 .abspos { position: absolute; left: 7.5em; top: 9.5em; } 19 .testA { width: 5em; height: 5em; background: green; } 20 .testB { width: 20%; height: 20%; background: red; } 21 </style> 22 </head> 23 <body> 24 <p>Test passes if there are 4 green squares making a green square pattern and <strong>no red</strong>.</p> 25 <table><tbody><tr><td> 26 <div class="testA"></div> 27 <div class="testB"></div> 28 </td></tr></tbody></table> 29 <div class="float"> 30 <div class="testA"></div> 31 <div class="testB"></div> 32 </div> 33 <div class="fixpos"> 34 <div class="testA"></div> 35 <div class="testB"></div> 36 </div> 37 <div class="abspos"> 38 <div class="testA"></div> 39 <div class="testB"></div> 40 </div> 41 42 43 </body> 44 </html>