IE 6 Min/Max height using


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

Downside -- relies on JavaScript being enabled


Copy this code and paste it in your HTML
  1. * html div#mySelector{
  2. height: expression( this.scrollHeight > 332 ? "333px" : "auto" ); /* sets max-height for IE */}
  3.  
  4. div#mySelector{max-height:333px; /* sets max-height value for standards-compliant browsers */}

URL: http://perishablepress.com/press/2007/01/16/maximum-and-minimum-height-and-width-in-internet-explorer/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.