tor-browser

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

overflow-hidden-1-ref.html (411B)


      1 <!DOCTYPE html>
      2 <html><head>
      3 <style type="text/css">
      4 .stage{
      5 	perspective:  700px;
      6 	overflow: hidden;
      7 	width: 260px;
      8 	height: 260px;
      9 	display: block;
     10 }
     11 
     12 .box {
     13 	width: 170px;
     14 	height: 170px;
     15 	background-color: red;
     16 	display:  block;
     17 	transform: rotate3d(0,1,0, 50deg) translatey(20px);
     18 }
     19 
     20 </style>
     21 </head>
     22 
     23 <body id="body">
     24 <div class="stage">
     25 	<div class="box"></div>
     26 </div>
     27 </body></html>