As you may be aware the CSS property min-height unfortunately doesn’t work in IE6, however if you add the following hack after the attribute:


height:auto !important;
height: (the min height value);

You’ll be able to get it to work, an example would be:


.classname {
min-height:200px;
height:auto !important;
height:200px;
}

2 Responses to Quick coding tips: Minimum height in IE6

  1. Paul KIrk says:

    Great tip – many thanks!

  2. thanks for sharing, i like your blog .. ;)

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>