tor-browser

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

table-cell-overflow-explicit-height-001.html (502B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1880550">
      3 <link rel="help" href="https://drafts.csswg.org/css-tables/#height-distribution">
      4 <link rel="match" href="table-cell-overflow-explicit-height-ref.html">
      5 <style>
      6 td {
      7  height: 20px;
      8  border: 2px solid cyan;
      9  overflow: hidden;
     10 }
     11 .tall {
     12  height: 300px;
     13  background: blue;
     14  border: 2px solid black;
     15 }
     16 </style>
     17 <table border>
     18  <td>
     19    <div class="tall"></div>
     20    Can you see this text?
     21  </td>
     22 </table>