Ultimamente ho trovato sconsigliato usare hack che sfruttano errori di sintassi dei browser. In effetti, se domani esce unapatch del browser che sistema solo l'errore di sintassi, l'hack fallisce.

Invece conviene usare i commenti condizionali, che vengono riconosciuti solo in IE:
codice:
<!--[if IE]>
  <link rel="stylesheet" type="text/css" href="ie.css" />
<![endif]-->
Il codice proposto da Andrea, quindi diventerebbe:
codice:
<style type="text/css">
body {background:#fff; font-family:sans-serif; font-size:100%; color:#000}

/* per tutti i browsers seri */
.width {width:50em; min-width:800px;}

.container{background-color:#FF0000}
</style>

<!--[if IE]> <style type="text/css"> /* per IE6 */
.minwidth {border-left:800px solid #fff; position:relative; float:left; z-index:1;}
.container {margin-left:-800px; position:relative; float:left; z-index:2;}
</style><![endif]-->