tor-browser

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

table-row-group-height.html (562B)


      1 <!doctype html>
      2 <link rel="match" href="table-row-group-height-ref.html">
      3 <table style="border: 1px solid red">
      4  <thead style="display: block" height="100">
      5    <tr>
      6      <td>
      7        thead text
      8      </td>
      9    </tr>
     10  </tr>
     11 </table>
     12 
     13 <table style="border: 1px solid red">
     14  <tbody style="display: block" height="100">
     15    <tr>
     16      <td>
     17        tbody text
     18      </td>
     19    </tr>
     20  </tr>
     21 </table>
     22 
     23 <table style="border: 1px solid red">
     24  <tfoot style="display: block" height="100">
     25    <tr>
     26      <td>
     27        tfoot text
     28      </td>
     29    </tr>
     30  </tr>
     31 </table>