Центрирование DIV с помощью IE

Я пытаюсь центрировать DIV с помощью "margin: auto" . Он отлично работает с Chrome и FF, но следующий код не центрирует DIV с IE:

CSS

#container {
 margin:auto;
 width:950px;
 height:50px;
 background:#000;
}

HTML

<div id="container"></div>

Что я делаю не так?

Спасибо,

Joel


Edit ( полный код HTML / CSS):

<html>
<head>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.2.0/build/cssreset/reset-min.css">
<style>

#container {
 margin: 0 auto; 
 width:950px;
 height:50px;
 background:#000;
}
</style>
</head>
<body>
<div id="container"></div>
</body>
</html>
18
задан Joel 21 October 2010 в 13:54
поделиться