-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path等分.html
46 lines (41 loc) · 838 Bytes
/
等分.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
* {
margin: 0;
padding: 0;
}
.parent {
border: 1px dashed #222222;
overflow: hidden;
}
.col {
height: 100px;
background-color: #ccc;
}
.parent {
margin-left: -20px;
}
.col {
float: left;
width: 25%;
border: 1px solid red;
box-sizing: border-box;
}
.col + .col {
margin-left: 20px;
}
</style>
</head>
<body>
<div class="parent">
<div class="col">第1行</div>
<div class="col">第2行</div>
<div class="col">第3行</div>
<div class="col">第4行</div>
</div>
</body>
</html>