What is the definitive way to mimic the CSS property min-width in Internet Explorer 6? Is it better not to try?
This works pretty well...
div.container { min-width: 760px; width:expression(document.body.clientWidth < 760? "760px": "auto" ); }