gpt4 book ai didi

css - 如何最小高度 float DIV?

转载 作者:行者123 更新时间:2023-11-28 13:44:36 25 4
gpt4 key购买 nike

我正在尝试将 min-height 设置为 XHTML 或 HTML 文档中的 float DIV。将固定高度的 DIV 放入 DIV 并使用 :after 清除它的修复根本不起作用。直接分配 min-height 也不起作用。

我现在的代码是这样的(它只适用于 Firefox 的怪癖模式,但我希望它是真实的):

<div style="float:left">
<div style="float:left; height:200px"><!-- min-height hackfix --></div>
CONTENT GOES HERE
<div style="clear:both;"></div>
</div>

最佳答案

我没有真正得到你想要的,但这里是最小高度问题的修复:

selector {
min-height:500px;
height:auto !important;
height:500px;
}

所以,你的代码可以是这样的

<div style="float:left;min-height:200px;height:auto !important;height:200px;">
CONTENT GOES HERE
</div>

http://jsfiddle.net/ynhat/pcpsS/1/

关于css - 如何最小高度 float DIV?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5947812/

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