65 lines
1.4 KiB
HTML
65 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<style>
|
|
body{
|
|
height: 3000px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
float: left;
|
|
/* display: inline-block; */
|
|
}
|
|
.box-2_1 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: powderblue;
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 20px;
|
|
z-index: 9;
|
|
}
|
|
.box-1 {
|
|
background: red;
|
|
position: relative;
|
|
}
|
|
.box-2 {
|
|
background: blue;
|
|
position: relative;
|
|
}
|
|
.box-3 {
|
|
position: relative;
|
|
background: yellow;
|
|
left: -100px;
|
|
top: 30px;
|
|
z-index: -1;
|
|
}
|
|
.box-4 {
|
|
background: green;
|
|
}
|
|
.box-5 {
|
|
background: palevioletred;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="box box-1">1</div>
|
|
<div class="box box-2">
|
|
<div class="box-2_1"></div>
|
|
</div>
|
|
<div class="box box-3">3</div>
|
|
<div class="box box-4">4</div>
|
|
<div class="box box-5">5</div>
|
|
|
|
</body>
|
|
</html> |