tor-browser

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

overflow-body-propagation-007-ref.html (649B)


      1 <!doctype html>
      2 <html><head>
      3 <meta charset="utf-8">
      4 <title>CSS Reference: overflow-x:clip propagated from BODY</title>
      5 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1635473">
      6 <style>
      7  html { overflow: hidden auto; }
      8  body {
      9    width: 30px;
     10    height: 30px;
     11    padding: 10px;
     12    margin-left: 100px;
     13    margin-top: 100px;
     14  }
     15 
     16  div {
     17    position: relative;
     18    top: -20px;
     19    left: -40px;
     20    background: blue;
     21    height: 10000px;
     22    width: 10000px;
     23    border-right-width: 20px;
     24    border-right-style: solid;
     25    border-right-color: red;
     26  }
     27 </style></head>
     28 <body><div></div></body>
     29 </html>