Files
ClassContent/历届学生/fontendsix/每日课程/2021-10-20/position.html
2024-09-27 02:06:13 +08:00

78 lines
1.4 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>定位</title>
<style>
body {
margin: 0;
}
.main {
margin-left: 30px;
}
.box {
width: 200px;
height: 200px;
float: left;
}
.box_1 {
background: red;
position: relative;
left: 30px;
top: 40px;
}
.box_2 {
background: green;
position: relative;
left: 10px;
top: 20px;
}
.box_2_1 {
width: 100px;
height: 100px;
background: palevioletred;
position: absolute;
left: 20px;
top: 20px;
}
.box_3 {
background: yellow;
position: fixed;
right: 0;
bottom: 0;
}
.box_4 {
background: blue;
}
</style>
</head>
<body>
<div class="main">
<div class="box_1 box"></div>
<div class="box_2 box">
<div class="box_2_1"></div>
</div>
<div class="box_3 box"></div>
<div class="box_4 box"></div>
</div>
</body>
</html>