tor-browser

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

table-grid-item-dynamic-001-ref.html (405B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test Reference</title>
      4 <style>
      5 html,body {
      6  color:black; background-color:white; font:16px/1 monospace; padding:0; margin:0;
      7 }
      8 
      9 div {
     10  display: grid;
     11  background-color: lime;
     12 }
     13 
     14 table {
     15  margin-top: 100px;
     16 }
     17 </style>
     18 <div>
     19  <table>
     20    <thead>
     21      <tr>
     22        <th>Relayout shouldn't grow this table</th>
     23      </tr>
     24    </thead>
     25  </table>
     26 </div>