div ( min-height: 500px; height:auto !important; height: 500px; )
Detta fungerar för (tack och lov?) IE behandlar "höjd" hur "minhöjd" ska behandlas.
Källa: Dustin Diaz
Alternativ med uttryck (endast IE)
div ( height: expression( this.scrollHeight < 501 ? "500px" : "auto" ); )
Ställer in minsta höjd i IE till 500px. Se till att this.scrollHeight <501 är 1 px större än den minsta höjd du vill ha, annars får du några konstiga resultat.