min-height para IE


/ Published in: CSS
Save to your folder(s)

En IE6 el min-height se reemplaza en realidad con height, porque por un error de Explorer tiene exactamente el mismo efecto.

Este código hace que la caja tenga 700px de mínimo tanto para FF como para IE6.


Copy this code and paste it in your HTML
  1. min-height:700px;
  2. height:auto!important;
  3. height:700px;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.