tor-browser

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

calc-height-table-1-ref.html (518B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <title>CSS Reference: Test that height:calc() with no percentages has an effect on inner table elements</title>
      5  <link rel="author" title="L. David Baron" href="https://dbaron.org/">
      6 <style type="text/css">
      7 tbody, tr, td {
      8  height: 500px;
      9  min-height: 700px;
     10  max-height: 2px;
     11 }
     12 </style>
     13 </head>
     14 <body>
     15 <table border>
     16  <tbody>
     17    <tr>
     18      <td>cell</td>
     19      <td>cell</td>
     20    </tr>
     21    <tr>
     22      <td>cell</td>
     23      <td>cell</td>
     24    </tr>
     25  </tbody>
     26 </table>
     27 </body>
     28 </html>