75 lines
1.5 KiB
HTML
75 lines
1.5 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;
|
|
height: 3000px;
|
|
}
|
|
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
border: 1px solid #000;
|
|
box-sizing: border-box;
|
|
float: left;
|
|
}
|
|
|
|
.box_1 {
|
|
background: rebeccapurple;
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.box_2 {
|
|
background: red;
|
|
position: relative;
|
|
left: 63px;
|
|
top: 31px;
|
|
}
|
|
|
|
.box_3 {
|
|
background: green;
|
|
}
|
|
|
|
.box_4 {
|
|
background: yellow;
|
|
position: relative;
|
|
left: -183px;
|
|
top: 74px;
|
|
}
|
|
|
|
.box_5 {
|
|
background: palevioletred;
|
|
}
|
|
|
|
.box_4_1 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: peachpuff;
|
|
border: 1px solid #000;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
left: 13px;
|
|
top: 145px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box box_1"></div>
|
|
<div class="box box_2"></div>
|
|
<div class="box box_3"></div>
|
|
<div class="box box_4">
|
|
<div class="box_4_1"></div>
|
|
</div>
|
|
<div class="box box_5"></div>
|
|
</body>
|
|
|
|
</html> |