gpt4 book ai didi

html - 将元素的高度值设置为纯CSS行中的最大值

转载 作者:行者123 更新时间:2023-11-27 22:30:29 24 4
gpt4 key购买 nike

我有 3 个 display:inline-block 样式的 div。我想设置它们的 height 值,使其与具有最高值的值相匹配。我还想自动设置高度值。我试图在视觉上展示我想要在下面得到的东西。这可以用纯 CSS 实现吗?

-----    -----    -----          -----    -----    ----- 
| | | | | | | | | | | |
----- | | | | ==> | | | | | |
----- | | | | | | | |
----- ----- ----- -----

最佳答案

使用 CSS,您可以将内部 div 设置为 display: table-cell,将外部 div 设置为 display: table

演示:http://jsfiddle.net/maniator/C2dNu/


HTML:

<div id='out'>
<div class='red'></div>
<div class='blue'></div>
<div class='green'></div>
</div>

CSS:

.red { 
background: red;
height: 60px;
}
.blue {
background: blue;
height: 160px;
}
.green {
background: green;
height: 80px;
}
#out {
display: table;
width: 500px;
}

#out > div {
display: table-cell;
width: 33%;
}

关于html - 将元素的高度值设置为纯CSS行中的最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18358394/

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