tor-browser

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

outline-overflow-inlineblock-abspos.html (490B)


      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  outline: 2px solid blue;
     11  display: inline-block;
     12  height: 50px;
     13  width: 50px;
     14  position: relative;
     15 }
     16 
     17 body > div > div {
     18  position: absolute;
     19  top: 0;
     20  left: 0;
     21  width: 100px;
     22  height: 100px;
     23 }
     24 
     25 </style>
     26 <body>
     27 <div><div></div></div>