Files
ClassContent/历届学生/18课程/class18_2/课程/2020-12-16/定位.html
2024-09-27 02:06:13 +08:00

70 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>定位</title>
<style>
body {
margin: 0;
padding: 0;
}
.box {
width: 200px;
height: 200px;
border: 1px solid #000;
box-sizing: border-box;
float: left;
}
.box_1 {
background: brown;
}
.box_2 {
background: green;
position: relative;
left: 10px;
top: 30px;
}
.box_3 {
background: yellow;
}
.box_4 {
background: blue;
}
.box_4_1 {
width: 100px;
height: 100px;
background: sienna;
position: absolute;
left: 10px;
top: 40px;
}
.box_5 {
background: plum;
}
</style>
</head>
<body>
<div class="box box_1"></div>
<div class="box box_2">
<div class="box_4_1"></div>
</div>
<div class="box box_3"></div>
<div class="box box_4"> </div>
<div class="box box_5"></div>
</body>
</html>