Edit/ I previously deleted this post because I noticed a potential problem noted below. I am bringing it back because the problem can be worked around.
Almost, it should be:
Code:
#contentwrapper{
float: left;
width: 100%;
min-height:525px;
}
* html #contentwrapper {
height:expression(Math.max(this.offsetHeight, 525)+'px');
}
And, javascript must be active. In IE 6 locally, this will cause an active x warning at times but not for the live page. IE 7 ignores * html but should use the min-height declaration and may give the warning locally as well. Also, if you use padding, margins or border, adjustments may be needed to prevent IE 6 from locking up. For instance, with a 1px border you need to use:
this.offsetHeight-2
Bookmarks