如何用绝对位置限制高度限制的flex块?

时间:2017-10-25 21:20:11

标签: html css css3 flexbox

看看这个小提琴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;
&#13;
&#13;

containerposition:absoluteflex-wrap: wrap。如果高度有限,则块会向左移动,但父块不会包裹所有块,只是第一列。

在这种情况下使用width: 100%不是解决方案。 是否可以使用flex块来解决这个问题?

0 个答案:

没有答案