> im having slight difficulty with minimum height in IE. it works fine in
> FF and all the info i can find suggests that it shoudl work in IE.
I don't think IE supports min-height, but it treats height incorrectly
(as min-height).
Just use an IE conditional comment with height like this:
<!--[if IE]>
<style type="text/css">
#middle {
height: 450px;
}
</style>
<![endif]-->Ricky ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
