tor-browser

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

table-cell-overflow-auto.html (862B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#row-layout">
      3 <link rel="match" href="table-cell-overflow-auto-ref.html">
      4 <meta name="assert" content="horizontal scrollbars show up on table-cells with overflowing content and overflow:auto, vertical-align: middle/top" />
      5 <div style="width: 100px; height: 100px; border: solid;">
      6  <div style="display: table-cell; max-width: 100px; height: 100px; background: green; overflow-x: auto; vertical-align: top;">
      7     <div style="width: 120px; height: 50px; background: hotpink;"></div>
      8   </div>
      9 </div>
     10 <br>
     11 <div style="width: 100px; height: 100px; border: solid;">
     12  <div style="display: table-cell; max-width: 100px; height: 100px; background: green; overflow-x: auto; vertical-align: middle;">
     13     <div style="width: 120px; height: 50px; background: hotpink;"></div>
     14   </div>
     15 </div>