¿Cómo desarmar la altura máxima?
¿Cómo restablezco la max-height
propiedad a su valor predeterminado, si se configuró previamente en alguna regla CSS? Esto no funciona:
pre {
max-height: 250px;
}
pre.doNotLimitHeight {
max-height: auto; // Doesn't work at least in Chrome
}
Aceptado
Restablecerlo a none
:
pre {
max-height: 250px;
}
pre.doNotLimitHeight {
max-height: none;
}
Referencia
Puede borrar el atributo de altura máxima utilizando el siguiente CSS:
max-height:none;