tor-browser

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

preserves3d-nested-filter-1-ref.html (416B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Green square</title>
      5 <style>
      6 .filter {
      7  filter: brightness(0.75);
      8 }
      9 
     10 .container {
     11  width: 200px;
     12  height: 200px;
     13 
     14  background-color: green;
     15 }
     16 
     17 .square {
     18  position: absolute;
     19 
     20  width: 200px;
     21  height: 200px;
     22 
     23  background-color: green;
     24 }
     25 </style>
     26 </head>
     27 <body>
     28 
     29 <div class="filter">
     30  <div class="container">
     31    <div class="square"></div>
     32  </div>
     33 </div>
     34 
     35 </body>
     36 </html>