10
0

3_css3旋转.html 674 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. .box{
  9. width: 400px;
  10. height: 400px;
  11. border:1px dashed black;
  12. margin:100px auto;
  13. }
  14. .div1{
  15. width: 200px;
  16. height: 200px;
  17. background-color: red;
  18. transform: rotate(45deg);
  19. /* transform-origin: 50% 50%; */
  20. transform-origin: 10px 100px;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="box">
  26. <div class="div1"></div>
  27. </div>
  28. </body>
  29. </html>