59 lines
1.2 KiB
HTML
59 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 {
|
|
height: 3000px;
|
|
}
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
float: left;
|
|
}
|
|
|
|
.box1 {
|
|
background: red;
|
|
position: relative;
|
|
left: 20px;
|
|
top: 20px;
|
|
}
|
|
.box2 {
|
|
background: green;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
.box3 {
|
|
background: yellow;
|
|
position: absolute;
|
|
}
|
|
.box4 {
|
|
background: plum;
|
|
}
|
|
.box_1_1 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: blue;
|
|
position: absolute;
|
|
left: 100px;
|
|
top: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="box box1">
|
|
<div class="box_1_1"></div>
|
|
</div>
|
|
<div class="box box2"></div>
|
|
<div class="box box3"></div>
|
|
<div class="box box4"></div>
|
|
|
|
|
|
</body>
|
|
</html> |