IE7 has issues working with max-width. If it's inevitable and you have to use it, there is a workaround:
IE supports its own expression attribute, which enables us to use JavaScript expressions to manipulate (X)HTML document properties such as max-width and max-height.
div {
width: expression(333 + "px");
}
..Which is equivalent to this:
div {
width: 333px;
}
max-width in IE
This method has been verified in IE6 and should also work in IE5. Simply change the values to suit your needs and include in your document via conditional comment. In this example, max-width is 777px 1 for IE and all standards-compliant browsers:
* html div#division {
width: expression( document.body.clientWidth > 776 ? "777px" : "auto" ); /* sets max-width for IE */
}
div#division {
max-width: 777px; /* this sets the max-width value for all standards-compliant browsers */
}
Source: http://perishablepress.com/press/2007/01/16/maximum-and-minimum-height-and-width-in-internet-explorer/