gpt4 book ai didi

css - 如何取消设置最大高度?

转载 作者:行者123 更新时间:2023-11-29 15:55:25 26 4
gpt4 key购买 nike

如果以前在某些 CSS 规则中设置了 max-height 属性,如何将其重置为默认值?这不起作用:

pre {
max-height: 250px;
}

pre.doNotLimitHeight {
max-height: auto; // Doesn't work at least in Chrome
}

最佳答案

将其重置为:

pre {
max-height: 250px;
}

pre.doNotLimitHeight {
max-height: none;
}

Reference

关于css - 如何取消设置最大高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58334093/

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