3_CSS3旋转.html 719 B

12345678910111213141516171819202122232425262728293031
  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: 100px;
  10. height: 100px;
  11. background-color: red;
  12. transform: rotate(45deg);
  13. /* transform-origin: 0 0; */
  14. /* transform-origin: left bottom; */
  15. transform-origin: -10px -10px;
  16. }
  17. .div1{
  18. margin:100px auto;
  19. width: 100px;
  20. height: 100px;
  21. border:2px solid blue;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div class="div1">
  27. <div class="box"></div>
  28. </div>
  29. </body>
  30. </html>