css – 如何unset max-height?

前端之家收集整理的这篇文章主要介绍了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

猜你在找的CSS相关文章