tor-browser

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

table-row-group-height-ref.html (510B)


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