55 lines
1.1 KiB
HTML
55 lines
1.1 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>Document</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
}
|
|
.box {
|
|
width: 200px;
|
|
height: 200px;
|
|
border: 1px solid #000;
|
|
float: left;
|
|
}
|
|
.box_1 {
|
|
background: blue;
|
|
}
|
|
.box_2 {
|
|
background: gray;
|
|
position: relative;
|
|
left: 30px;
|
|
top: 20px;
|
|
}
|
|
|
|
.box_3 {
|
|
background: yellow;
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.box_5 {
|
|
background: navajowhite;
|
|
position: absolute;
|
|
left: 30px;
|
|
top: 30px;
|
|
}
|
|
|
|
.box_4 {
|
|
background: red;
|
|
}
|
|
</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_5"></div>
|
|
<div class="box box_4"></div>
|
|
</body>
|
|
</html>
|