¿Cómo desarmar la altura máxima?

Resuelto BiAiB asked hace 11 años • 5 respuestas

¿Cómo restablezco la max-heightpropiedad 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
}
BiAiB avatar Dec 21 '12 17:12 BiAiB
Aceptado

Restablecerlo a none:

pre {
  max-height: 250px;
}

pre.doNotLimitHeight {
  max-height: none;
}

Referencia

Madara's Ghost avatar Dec 21 '2012 10:12 Madara's Ghost

Puede borrar el atributo de altura máxima utilizando el siguiente CSS:

max-height:none; 
mr_lewjam avatar Dec 21 '2012 10:12 mr_lewjam