tor-browser

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

subpixel-table-cell-width-001-ref.html (460B)


      1 <!DOCTYPE html>
      2 <style>
      3  div {
      4    font-size: 0; /* so I can leave spaces between the child divs */
      5    height: 20px;
      6  }
      7  div > div {
      8    display: inline-block;
      9  }
     10  div > div:first-child {
     11    background: blue;
     12  }
     13  div > div:nth-child(2) {
     14    background: lime;
     15  }
     16 </style>
     17 
     18 <div>
     19  <div style="width:3.6px;"></div>
     20  <div style="width:3.6px;"></div>
     21 </div>
     22 
     23 <br><br>
     24 
     25 <div>
     26  <div style="width:3.3px;"></div>
     27  <div style="width:3.3px;"></div>
     28 </div>