Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/03/2008, 12:13
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: Div Contenedor

Prueba este codigo, que centra la caja correctamente en FF y IE6, y compáralo con el tuyo:

Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es-es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Centrado</title>
<style>
#centrada { margin: 0px auto;
width: 600px;
background-color: rgb(51, 153, 153);
height: 400px;
}
</style>
</head>
<body>
<div id="centrada">Esta caja deber&iacute;a estar centrada</div>
</body>
</html>
Mikel.