perspective-origin-2a.html (522B)
1 <html> 2 </head> 3 <style type="text/css"> 4 .stage{ 5 perspective: 100px; 6 perspective-origin: 25% 25%; 7 height:100px; 8 width:100px; 9 margin:5px; 10 padding:5px; 11 border:5px solid gray; 12 } 13 14 .box { 15 transform:rotateX(45deg); 16 height:70px; 17 width:70px; 18 background:green; 19 margin:5px; 20 padding:5px; 21 border:5px solid black; 22 } 23 24 </style> 25 </head> 26 <body> 27 <div class="stage"> 28 <div class="box"></div> 29 </div> 30 </body> 31 </html>