tor-browser

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

table-cell-overflow-explicit-height-002.html (522B)


      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  max-height: 20px;
      9  border: 2px solid cyan;
     10  overflow: hidden;
     11 }
     12 .tall {
     13  height: 300px;
     14  background: blue;
     15  border: 2px solid black;
     16 }
     17 </style>
     18 <table border>
     19  <td>
     20    <div class="tall"></div>
     21    Can you see this text?
     22  </td>
     23 </table>