What is the definitive way to mimic the CSS property min-width in Internet Explorer 6? Is it better not to try?
foo { min-width: 100px } // for everyone * html foo { width: 100px } // just for IE
(or serve a separate stylesheet to IE using conditional comments)