tor-browser

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

mix-blend-mode-952051-ref.html (443B)


      1 <!DOCTYPE HTML>
      2 <head>
      3 <style>
      4 	.parent {
      5 	  width: 200px;
      6 	  height: 200px;
      7 	  overflow: hidden;
      8 		border-radius: 0px 0px 20px 0px;
      9 
     10 		position: absolute;
     11 		z-index: 0;
     12 		background-color: #00ff00;
     13 	}
     14 
     15 	.child {
     16 	  width: 300px;
     17 	  height: 300px;
     18 	  margin-left: 100px;
     19 	  background-color: #ffff00;
     20 	}
     21 
     22 	body {
     23 		margin: 0;
     24 	}
     25 
     26 </style>
     27 </head>
     28 <body>
     29 <div class="parent">
     30     <div class="child"></div>
     31 </div>
     32 </body>