前端之家收集整理的这篇文章主要介绍了
css – 如何unset max-height?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将max-height
属性重置为默认值,如果之前在某些css规则中设置的?因为这不工作:
pre {
max-height: 250px;
}
pre.doNotLimitHeight {
max-height: auto; //Doesn't work at least in chrome
}
将其重置为none:
pre {
max-height: 250px;
}
pre.doNotLimitHeight {
max-height: none;
}
@H_
403_10@
Reference
原文链接:https://www.f2er.com/css/223603.html