-
Notifications
You must be signed in to change notification settings - Fork 0
/
56小米布局.html
60 lines (53 loc) · 1.29 KB
/
56小米布局.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!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>
.box {
margin: 0 auto;
width: 1226px;
height: 614px;
background-color: pink;
}
.left {
float: left;
width: 234px;
height: 614px;
background-color: blueviolet;
}
.right {
float: right;
width: 992px;
height: 614px;
background-color: rgb(60, 66, 68);
}
.item {
width: 234px;
height: 300px;
background-color: skyblue;
float: left;
margin-left: 14px;
}
.item:nth-child(n+5) {
margin-top: 14px;
}
</style>
</head>
<body>
<div class="box">
<div class="left"></div>
<div class="right">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
</body>
</html>