tor-browser

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

max-height-table.html (771B)


      1 <!doctype html>
      2 <title>max-height cannot shrink a table under its intrinsic size</title>
      3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1651530">
      4 <link rel="help" href="https://drafts.csswg.org/css-tables/#computing-the-table-height">
      5 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5336">
      6 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
      7 <link rel="author" href="https://mozilla.org" title="Mozilla">
      8 <link rel="match" href="max-height-table-ref.html">
      9 <style>
     10 td {
     11  padding: 0;
     12 }
     13 
     14 table {
     15  border-spacing: 0;
     16  max-height: 0;
     17  border: 1px solid black;
     18  background: green;
     19  padding: 5px;
     20 }
     21 
     22 div {
     23  width: 5px;
     24  height: 5px;
     25 }
     26 </style>
     27 <table>
     28  <tr>
     29    <td><div></div></td>
     30  </tr>
     31 </table>