tor-browser

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

table-cell-overflow-explicit-height-ref.html (235B)


      1 <!DOCTYPE html>
      2 <style>
      3 td {
      4  border: 2px solid cyan;
      5 }
      6 .tall {
      7  height: 300px;
      8  background: blue;
      9  border: 2px solid black;
     10 }
     11 </style>
     12 <table border>
     13  <td>
     14    <div class="tall"></div>
     15    Can you see this text?
     16  </td>
     17 </table>