overflow-hidden-1-ref.html 421 B

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