html – 如何使flex子高度包装内容

前端之家收集整理的这篇文章主要介绍了html – 如何使flex子高度包装内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参见英文答案 > How to disable equal height columns in Flexbox?                                    2个
我基本上想要的是使每个子元素的高度包装其内容.

这是我的代码

输出

enter image description here

预期产量:

enter image description here

最佳答案
您只需要在父元素上设置align-items: flex-start,因为默认值为stretch.

.parent {
  display: flex;
  align-items: flex-start;
}

.child {
  padding: 5px;
  margin: 10px;
  background: green;
  height: auto;
}
原文链接:https://www.f2er.com/html/426279.html

猜你在找的HTML相关文章