最佳答案
我如何重置max-height
属性为其默认值,如果它已经在一些CSS规则之前设置?这行不通:
pre {
max-height: 250px;
}
pre.doNotLimitHeight {
max-height: auto; // Doesn't work at least in Chrome
}