Actually the solution is very easy for IE since IE treats height almost as if it were min-height. So the following will do what you want (assuming 200px was the min-height you wanted)
 ..foo {
   min-height: 200px 
 } // feed IE the same value for height, but not it IE Mac 5
 * html .foo { /*\*/ height: 200px; }
 Of course, Safari still doesn’t support min-height either, so you 
 might be interested in Dave Shea (of Mezzoblue and the CSS Zen 
 Garden)’s cunning fix