tor-browser

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

background-image-table-cells-zoomed-ref.html (765B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Background Test Reference</title>
      5    <link rel="author" title="schenney" href="mailto:schenney@chromium.org">
      6    <style>
      7      body {
      8      	zoom: 121%;
      9      }
     10      .test-table {
     11        display: table;
     12        width: 600px;
     13        border-collapse: collapse;
     14        border-spacing: 0;
     15        background-color: green;
     16      }
     17      .test-row {
     18        display: table-row;
     19        padding: 0px;
     20      }
     21      .test-cell {
     22        display: table-cell;
     23        padding: 0px;
     24        height: 50px;
     25        border: 0;
     26      }
     27 
     28  </style>
     29 </head>
     30 
     31 <body>
     32  <div class="test-table">
     33    <div class="test-row">
     34      <div class="test-cell"></div>
     35      <div class="test-cell"></div>
     36    </div>
     37  </div>
     38 </body>
     39 </html>