-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrap.html
More file actions
38 lines (38 loc) · 921 Bytes
/
wrap.html
File metadata and controls
38 lines (38 loc) · 921 Bytes
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
<!--Created by rongzhx on 2017/5/15 0015.-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.box{
display: flex;
display: -webkit-flex;
justify-content:space-between;
padding:5px;
border:solid 1px gray;
width:200px;
flex-wrap:wrap;
flex-direction:row;
}
.item{
flex:0 0 25%;
display: inline-block;
/*width:20px;*/
height:40px;
background-color: #e0d623;
box-sizing:border-box;
border:solid 1px red;
}
</style>
</head>
<body>
<div class="box">
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
<span class="item"></span>
</div>
</body>
</html>