flex之justify-content

2018-03-23

详细语法及释义可参考http://www.runoob.com/cssref/css3-pr-justify-content.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
61
62
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>flex文字两边对齐</title>
</head>
<style>
body {
margin: 0;
padding: 0;
}

.wrap {
width: 300px;
height: 200px;
margin: 20px auto;
background-color: blanchedalmond;
}

.nav {
padding: 0 10px;
line-height: 50px;
background-color: #cccccc;
display: flex;
flex: 0 1 auto;
text-align: center;
}

.wrap div {
/* flex-grow: 1; */
justify-content: space-between;
}

a {
text-decoration: none;
font-size: 16px;
position: relative;
display: inline-block;
}
</style>

<body>
<div class="wrap">
<div class="nav">
<div>
<a href="#">首页首首页</a>
</div>
<div>
<a href="#">关于我们</a>
</div>
<div>
<a href="#">产品中</a>
</div>
</div>
</div>

</body>

</html>