Friday, November 20, 2009

min-height fix for ie6

Just use this code in your css class :
    min-height:350px;
    height: expression( this.scrollHeight < 350 ? "350px" : "auto" );
 this code will work for all latest browsers, it will set minimum height for ie6, ie7, ie8, ff3 and above.

No comments: