Files
ClassContent/历届学生/韩一伟/每天课程/2021-06-29/index.html
2024-09-27 02:06:13 +08:00

51 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 300px;
height: 300px;
background: red;
position: relative;
overflow: hidden;
}
.box_2 {
width: 100px;
height: 100px;
background: yellow;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.box_2:hover{
transform: scale(2.5);
}
.aaaaa {
font-size: 8px;
/* transform: scale(0.8);
display: inline-block;
transform-origin: 0 50%; */
zoom: 0.8;
}
</style>
</head>
<body>
<div class="box">
<div class="box_2">222</div>
<span>测试</span>
<span class="aaaaa">哈哈哈</span>
</div>
</body>
</html>