tor-browser

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

perspective-overflow-2.html (535B)


      1 <!DOCTYPE html>
      2 <html>
      3 
      4 <head>
      5    <meta charset="utf-8">
      6    <title>Transform Overflow Bug</title>
      7    <style>
      8    .container {
      9        width: 100px;
     10        height: 100px;
     11        overflow: scroll;
     12        scrollbar-width: none;
     13        perspective: 1px;
     14    }
     15 
     16    .inner {
     17        will-change: transform;
     18        background-color: red;
     19        width: 200px;
     20        height: 200px;
     21    }
     22    </style>
     23 </head>
     24 
     25 <body>
     26    <div class="container">
     27        <p class="inner"></p>
     28    </div>
     29 </body>
     30 </html>