gpt4 book ai didi

css - 两列等高只有 css(不显示 : table, table-row, table-cell)

转载 作者:技术小花猫 更新时间:2023-10-29 10:39:22 27 4
gpt4 key购买 nike

最佳答案

我用这个,纯CSS。

html:

<div id="container" class="holder">
<div id="column-one" class="even-height">TEXT</div>
<div id="column-two" class="even-height">TEXT</div>
</div>

CSS:

.holder {
overflow: hidden;
clear: both;
}
.holder .even-height {
float: left;
padding-bottom: 100000px;
margin-bottom: -100000px;
}
#column-one { width: 30%; }
#column-two { width: 70%; }

列可以是您实际需要的任何宽度。无论如何, super 简单且跨浏览器友好。

关于css - 两列等高只有 css(不显示 : table, table-row, table-cell),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10987821/

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