tor-browser

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

relative-child-overflowing-column-gap-ref.html (358B)


      1 <!DOCTYPE html>
      2 <title>Relative child can overflow onto the column gap area</title>
      3 <style>
      4 body {
      5  margin: 0px;
      6 }
      7 
      8 .child {
      9  width: 100px;
     10  height: 50px;
     11  background: green;
     12 }
     13 
     14 .child2 {
     15  width: 100px;
     16  height: 50px;
     17  background: green;
     18  position: absolute;
     19  left: 125px;
     20  top: 0px;
     21 }
     22 </style>
     23 <div class="child"></div>
     24 <div class="child2"></div>