Estoy tratando de centrar un DIV, con "margin:auto"
. Funciona bien con Chrome y FF, pero el siguiente código no se centra el DIV con IE:Centrado DIV con IE
CSS
#container {
margin:auto;
width:950px;
height:50px;
background:#000;
}
HTML
<div id="container"></div>
¿Qué estoy haciendo mal?
Gracias,
Joel
Editar (HTML/CSS código):
<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>
¿Qué versión de IE has probado este código con? Normalmente defino un 'ancho' y luego establezco' margin: 0 auto' y funciona bien incluso en IE ... –
¡Probé probándolo con IE9! El código que utilicé arriba ... – Joel
Cierto, pero como dijo Sime use margin: 0 auto; Solo tiene margen: auto – Rob