Files
2024-09-27 02:06:13 +08:00

57 lines
1.2 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;
}
.box {
width: 200px;
height: 200px;
float: left;
}
.box_1 {
background: red;
position: relative;
left: 50px;
top: 30px;
}
.box_2 {
background: blue;
position: relative;
}
.box_2_3 {
width: 150px;
height: 150px;
background: black;
position: absolute;
left: 10px;
top: 30px;
}
.box_3 {
background: yellow;
position: fixed;
right: 0;
bottom: 0;
}
.box_4 {
background: plum;
}
</style>
</head>
<body>
<div class="box box_1"></div>
<div class="box box_2">
<div class="box_2_3"></div>
</div>
<div class="box box_3"></div>
<div class="box box_4"></div>
</body>
</html>