preserve3d-2c.html 581 B

1234567891011121314151617181920212223242526272829
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. #grandparent {
  5. -moz-transform-style: preserve-3d;
  6. }
  7. #parent {
  8. -moz-transform-style: preserve-3d;
  9. }
  10. #child {
  11. width: 100px;
  12. height: 100px;
  13. background-color: red;
  14. -moz-transform: translatex(-200px);
  15. margin-left: 200px
  16. }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="grandparent">
  21. <div id="parent">
  22. <div id="child"></div>
  23. </div>
  24. </div>
  25. </body>
  26. </html>