64 lines
1.1 KiB
HTML
64 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>定位</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 1000px;
|
|
}
|
|
.width150 {
|
|
width: 150px;
|
|
height: 150px;
|
|
float: left;
|
|
}
|
|
.box1 {
|
|
background: yellow;
|
|
}
|
|
.box2 {
|
|
background: green;
|
|
position: relative;
|
|
left: 260px;
|
|
top: 30px;
|
|
z-index: -21;
|
|
}
|
|
.box3 {
|
|
background: red;
|
|
}
|
|
.box4 {
|
|
background: blue;
|
|
position: relative;
|
|
}
|
|
.box4-1 {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: #8d8d8d;
|
|
position: absolute;
|
|
right: -20px;
|
|
top: -20px;
|
|
}
|
|
.box5 {
|
|
background: palevioletred;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class="box1 width150"></div>
|
|
<div class="box2 width150"></div>
|
|
<div class="box3 width150"></div>
|
|
<div class="box4 width150">
|
|
<div class="box4-1"></div>
|
|
</div>
|
|
<div class="box5 width150"></div>
|
|
|
|
|
|
</body>
|
|
</html> |