無使用flex時
.container
.box.box1 1
.box.box2 2
.box.box3 3
.box.box4 4
.box.box5 5
.box.box6 6
.box.box7 7
.box.box8 8
.box.box9 9
.box.box10 10
.box
color: white
font-size: 100px
text-align: center
text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1)
padding: 10px
.box1
background: #1abc9c
.box2
background: #3498db
.box3
background: #9b59b6
.box4
background: #34495e
.box5
background: #f1c40f
.box6
background: #e67e22
.box7
background: #e74c3c
.box8
background: #bdc3c7
.box9
background: #2ecc71
.box10
background: #16a085
Display
1
2
3
4
5
6
7
8
9
10
使用display: flex
外層元素會拉成一列
內層元素會變成flex-item
.container
display: flex
border: 10px solid goldenrod
1
2
3
4
5
6
7
8
9
10
使用display: inline-flex
外層元素會拉成一列,但不會全部填滿一列
內層元素會變成flex-item
.container
display: inline-flex
border: 10px solid goldenrod
1
2
3
4
5
6
7
8
9
10