12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box{
- width: 100px;
- height: 100px;
- background-color: red;
- transform: rotate(45deg);
- /* transform-origin: 0 0; */
- /* transform-origin: left bottom; */
- transform-origin: -10px -10px;
- }
- .div1{
- margin:100px auto;
- width: 100px;
- height: 100px;
- border:2px solid blue;
- }
- </style>
- </head>
- <body>
- <div class="div1">
- <div class="box"></div>
- </div>
- </body>
- </html>
|