tor-browser

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

outline-overflow-block-abspos.html (463B)


      1 <!DOCTYPE HTML>
      2 <title>outline doesn't go around overflowing abspos descendants</title>
      3 <style>
      4 
      5 html, body { margin: 0; padding: 0; border: none }
      6 html { overflow:hidden /* avoid second reflow for scrollbars */ }
      7 
      8 body > div {
      9  margin: 100px;
     10  width: 50px; height: 50px;
     11  outline: 2px solid blue;
     12  position: relative;
     13 }
     14 
     15 body > div > div {
     16  position: absolute;
     17  top: 0;
     18  left: 0;
     19  width: 100px;
     20  height: 100px;
     21 }
     22 
     23 </style>
     24 <body>
     25 <div><div></div></div>