tor-browser

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

html-display-table.html (675B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>&lt;html display:table&gt;</title>
      4 <link rel="author" href="mailto:atotic@chromium.org">
      5 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#scrollable">
      6 <meta name="assert" content="<html display:table> does not fill the viewport">
      7 <link rel="match" href="html-display-table-ref.html">
      8 <style>
      9  html {
     10    display: table;
     11    border: 10px solid green;
     12    border-spacing: 0;
     13    padding: 0;
     14    margin: auto;
     15  }
     16  body {
     17    padding: 0;
     18    margin: 0;
     19  }
     20 </style>
     21 <div style="width:200px;height:300px;background:yellow;display:inline-block;"></div><div style="width:80px;height:300px;background:yellow;display:inline-block;"></div>