gpt4 book ai didi

css等高div block

转载 作者:行者123 更新时间:2023-11-28 11:32:51 26 4
gpt4 key购买 nike

我有3 block

enter image description here

<div>loremloremloremlorem</div>
<div>loremloremlorem</div>
<div>loremloremloremlorem</div>

如何设置 CSS 具有等高?我不能使用 row,因为它是响应式设计,我 1 行可以灵活地计算元素数。

最佳答案

使用display:tabledisplay:table-cell

.container {
display:table;
}

.item {
display:table-cell;
width:100px;
border:2px solid black;
}

.item + .item {
border-left:none;
}
<div class="container">
<div class="item">test test test test</div>
<div class="item">test test test test test test test test test test test test</div>
<div class="item">test test test test test test test test</div>
</div>

关于css等高div block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33015803/

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