tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

padding-bottom-036.xht (1700B)


      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: Padding-bottom using centimeters with a minimum plus one value, 1cm</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-23 -->
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#propdef-padding-bottom" />
      8         <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#padding-properties" />
      9         <meta name="assert" content="The 'padding-bottom' property handles a minimum plus one length value in centimeters." />
     10         <style type="text/css">
     11             div
     12             {
     13                 height: 0;
     14                 width: 50px;
     15             }
     16             .parent1
     17             {
     18                 background: red;
     19                 min-height: 37px
     20             }
     21             .test1, .test2
     22             {
     23                 padding-bottom: 1cm;
     24             }
     25             .test1
     26             {
     27                 background: green;
     28             }
     29             .test2
     30             {
     31                 background: red;
     32             }
     33             .child1
     34             {
     35                 background: green;
     36                 height: 38px;
     37             }
     38         </style>
     39     </head>
     40     <body>
     41         <p>Test passes if there is <strong>no red</strong>.</p>
     42         <div class="parent1">
     43             <div class="test1"></div>
     44         </div>
     45         <div class="test2">
     46             <div class="child1"></div>
     47         </div>
     48     </body>
     49 </html>