63 lines
1.2 KiB
HTML
63 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: 100px;
|
|
height: 100px;
|
|
float: left;
|
|
}
|
|
|
|
.box_1 {
|
|
background: red;
|
|
}
|
|
|
|
.box_2 {
|
|
background: green;
|
|
position: relative;
|
|
left: 17px;
|
|
top: 30px;
|
|
}
|
|
|
|
.box_3 {
|
|
background: blue;
|
|
position: relative;
|
|
}
|
|
|
|
.box_3_1 {
|
|
background: palevioletred;
|
|
width: 60px;
|
|
height: 60px;
|
|
position: absolute;
|
|
left: 27px;
|
|
top: 80px;
|
|
}
|
|
|
|
.box_4 {
|
|
background: yellow;
|
|
position: fixed;
|
|
right: 19px;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box box_1">1</div>
|
|
<div class="box box_2">2</div>
|
|
<div class="box box_3">
|
|
<div class="box_3_1"></div>
|
|
</div>
|
|
<div class="box box_4">4</div>
|
|
</body>
|
|
|
|
</html> |