| 1234567891011121314151617181920212223242526 |
- <!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: 200px;
- height: 200px;
- background-color: red;
- margin: 200px auto;
-
- }
- .box:hover{
- /* width: 300px;
- height: 300px; */
- /* scale() 缩放变换 有一个参数 用于指定缩放的比例 */
- transform: scale(2);
- }
- </style>
- </head>
- <body>
- <div class="box"></div>
- </body>
- </html>
|