68 lines
1.3 KiB
HTML
68 lines
1.3 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>
|
|
.box {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: blue;
|
|
border: 5px solid red;
|
|
padding: 5px;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
left: 24px;
|
|
}
|
|
|
|
.box_1 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: brown;
|
|
}
|
|
|
|
.box_2 {
|
|
width: 100px;
|
|
height: 100px;
|
|
background: chartreuse;
|
|
}
|
|
.float {
|
|
float: left;
|
|
}
|
|
.box_3 {
|
|
width: 70px;
|
|
height: 70px;
|
|
background: palevioletred;
|
|
}
|
|
.box_4 {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: sandybrown;
|
|
}
|
|
.box_2 {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="float box"></div>
|
|
|
|
<div class="float box_1">
|
|
<div class="box_3">
|
|
<div class="box_4"></div>
|
|
</div>
|
|
</div>
|
|
<div class="float box_2"></div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |