Using the following code you can get IE6 to work with min-width and min-height.
* html #wrapper
{
width:expression((d = document.compatMode == "CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1280 ? "1280px" : d.clientWidth < 1024 ? "1024px" : "auto"));
}
Note: Place this within an if IE 6 condition.



