tor-browser

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

line-height-applies-to-007.xht (1818B)


      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: Line-height applied to elements with 'display' set to 'table-cell'</title>
      5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
      6         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height" />
      7         <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" />
      8         <link rel="match" href="line-height-applies-to-001-ref.xht" />
      9 
     10         <meta name="assert" content="The 'line-height' property applies to elements with 'display' set to 'table-cell'." />
     11         <style type="text/css">
     12             #div1
     13             {
     14                 position: relative;
     15             }
     16             #div2
     17             {
     18                 background: orange;
     19                 height: 2in;
     20                 left: 1in;
     21                 position: absolute;
     22                 top: 0;
     23                 width: 1in;
     24             }
     25             #table
     26             {
     27                 display: table;
     28                 table-layout: fixed;
     29             }
     30             #row
     31             {
     32                 display: table-row;
     33             }
     34             #cell
     35             {
     36                 background: blue;
     37                 display: table-cell;
     38                 line-height: 2in;
     39                 width: 1in;
     40             }
     41         </style>
     42     </head>
     43     <body>
     44         <p>Test passes if the blue and orange rectangles have the <strong>same height</strong>.</p>
     45         <div id="div1">
     46             <div id="table">
     47                 <div id="row">
     48                     <div id="cell">&nbsp;</div>
     49                 </div>
     50             </div>
     51             <div id="div2"></div>
     52         </div>
     53     </body>
     54 </html>