gpt4 book ai didi

css - 如何让max-height在IE6,IE7中正常工作?

转载 作者:太空宇宙 更新时间:2023-11-04 00:33:30 25 4
gpt4 key购买 nike

max-height:600px;

以上在 IE7 中作为 height:600px 工作,在 IE6 中根本不工作。

最佳答案

IE6 不支持这个。使用条件注释为其提供一个仅适用于 IE6 的样式表,并使用 IE 的专有“表达式”属性来使用一些 javascript。

#id {
height: expression( this.scrollHeight > 332 ? "333px" : "auto" );
}

参见 http://perishablepress.com/press/2007/01/16/maximum-and-minimum-height-and-width-in-internet-explorer/

关于css - 如何让max-height在IE6,IE7中正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1608412/

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