gpt4 book ai didi

html - Flexbox( flex 方向 : column): wrapped child not positioned correctly when one child has fixed width

转载 作者:可可西里 更新时间:2023-11-01 12:55:01 26 4
gpt4 key购买 nike

我正在使用带有 flex-flow: column wrap 的 flexbox 布局。我正在为 flexbox 容器设置高度。我想要实现的是让第一个子元素占据整个高度,以便下一个子元素将换行到下一列。在我的例子中,那些 child 换行到下一列,但是他们的列和第一个 child 的列之间有一个巨大的空间。似乎我设置第一个 child 的宽度会以某种方式影响包裹 child 的定位。

这是我努力实现的目标: What I try to achieve这是我遇到的问题: enter image description here

这是代码笔的链接:codepen

.flex {
display: flex;
flex-flow: column wrap;
height: 100px;
border: 1px solid red;
}

.child1 {
background-color: green;
flex: 1 0 100%;
max-width: 100px;
}

.child2 {
flex: 1 0 20px;
background-color: yellow;
}

.child3 {
flex: 1 0 20px;
background-color: blue;
}
<div class="flex">
<div class="child1"></div>
<div class="child2"></div>
<div class="child3"></div>
</div>

最佳答案

我知道这是一个 Flexbox 问题,但我想将 CSS Grid 加入其中。它旨在处理 x/y 布局方向。虽然 flexbox 有时可以处理 y 部分,但通常会遇到更大的困难/hack。

.grid {
display: grid;
grid-template-columns: 100px 1fr;
grid-template-rows: repeat(2, 1fr);
height: 100px;
border: 1px solid red;
}

.child1 {
background-color: green;
grid-row: 1/-1; /* Begin at 1 and go to the end */
}

.child2 {
background-color: yellow;
}

.child3 {
background-color: blue;
}
<div class="grid">
<div class="child1"></div>
<div class="child2"></div>
<div class="child3"></div>
</div>

关于html - Flexbox( flex 方向 : column): wrapped child not positioned correctly when one child has fixed width,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55072620/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com