看看这个小提琴http://jsfiddle.net/q14nuebw/5/
.container {
position: absolute;
display: flex;
flex-flow: column;
flex-wrap: wrap;
max-height: 100px;
background-color: green;
padding: 10px;
}
.item {
display: flex;
align-items: center;
justify-content: center;
width: 90px;
height: 40px;
background-color: red;
}

<div class="container">
<div class="item">111</div>
<div class="item">222</div>
<div class="item">333</div>
<div class="item">444</div>
</div>
&#13;
container
有position:absolute
和flex-wrap: wrap
。如果高度有限,则块会向左移动,但父块不会包裹所有块,只是第一列。
在这种情况下使用width: 100%
不是解决方案。
是否可以使用flex块来解决这个问题?