我正在開發和appgap與手機。我想用flexbox在我的主應用程序區域中佈置一些按鈕。flexbox和wrap屬性
有人可以解釋爲什麼這個http://jsfiddle.net/apYLB/不包裝元素在最新的鉻?
HTML:
<div class="flex-container">
<div class="flex-item">1</div>
<div class="flex-item">2</div>
<div class="flex-item">3</div>
<div class="flex-item">4</div>
<div class="flex-item">5</div>
<div class="flex-item">6</div>
</div>
CSS:
.flex-container {
display: -webkit-box;
display: flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
-webkit-flex-direction: row;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-align: end;
-moz-box-align: end;
box-align: end;
-webkit-box-pack: center;
-moz-box-pack: center;
box-pack: center;
justify-content:space-around;
height:100%;
}
.flex-item {
margin:0 10px 25px 0;
width:86px;
border:1px solid #000;
}
.flex-item img {
max-height:80px;
}
他們horizzontally奠定只有3個半框出現。
下面是一個便利的圖表,用於匹配來自不同草稿的屬性/值:https://gist.github.com/cimmanon/727c9d558b374d27c5b6 – cimmanon