tor-browser

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

outline-overflow-inlineblock-float.html (428B)


      1 <!DOCTYPE HTML>
      2 <title>outline doesn't go around overflowing floats</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 }
     15 
     16 body > div > div {
     17  float: left;
     18  width: 100px;
     19  height: 100px;
     20 }
     21 
     22 </style>
     23 <body>
     24 <div><div></div></div>