NS uses min-height and max-height instead of just height. Though newer NS uses height but it uses it as an absolute and will not grow to accomodate data, which is yuck.
What I do is use two style sheets
1) IE - that is throoughly tested in IE.
3) All Others that is thoroughly tested in Opera, Maya, Mozilla Firebird & NS (this one is also w3c css compliant while the other one may not be).
Then I can use php to determine which style sheet to load by using this:
function load_style() {
global $_SERVER;
$style = (eregi('msie',$_SERVER['HTTP_USER_AGENT'])) ? 'main_ie.css' : 'main.css';
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"sptFiles/$style\" />\n";
} //end load_style