gpt4 book ai didi

css - 容器 div 内的三个 div - 如何让高度自动?

转载 作者:行者123 更新时间:2023-11-28 14:53:43 24 4
gpt4 key购买 nike

我有一个父级div,里面有三个div来创建一个列效果:

#container {
height:230px;
float:left;
}
#container_colone {
float:left;
width:40%;
height:auto;
}
#container_coltwo {
float:left;
width:40%;
height:auto;
}
#container_colthree {
float:right;
width:40%;
height:auto;
}

这里是html

<div id="container">
<div id="container_colone">
col one here
</div>
<div id="container_coltwo">
col two here
</div>
<div id="container_colthree">
col three here
</div>
</div>

因为我在容器中设置了高度,所以我希望这个容器中的所有列都具有相同的高度。因此,如果我将容器 div 设置为 400000000px,所有三个列将具有相同的高度。

上面的代码并没有削减它,我需要帮助来理解我需要做什么,这样我才能在未来快速获得它。

如有任何帮助,我们将不胜感激!

最佳答案

将 CSS 更改为:

    #container {
height:230px;
float:left;
}
#container_colone {
float:left;
width:30%;
height:100%;
}
#container_coltwo {
float:left;
width:30%;
height:100%;
}
#container_colthree {
float:right;
width:30%;
height:100%;
}

关于css - 容器 div 内的三个 div - 如何让高度自动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4108329/

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