hola!!
resulta que si abro con firefox la pagina que puse en el primer thread de este post se ve bien
http://www.redusers.com/foros/webmas...obre-css-tabla
pero cuando lo hago con el explorer me aparece asi
que estoy haciendo mal??
dejo de nuevo el codigo asi no tienen que abrir el otro thread
Código:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Documento sin título</title>
<link href="aaa.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="titulo">Colocar aquí el contenido para id "titulo"</div>
<div id="contenedor">
<div id="izq">Colocar aquí el contenido para id "izq"</div>
<div id="cen">Colocar aquí el contenido para id "cen"</div>
<div id="der">Colocar aquí el contenido para id "der"</div>
</div>
</body>
</html>
Código:
#contenedor {
background-color: #CCCCCC;
width: 750px;
margin-right: auto;
margin-left: auto;
text-align: center;
height: 400px;
display: tabla;
}
#titulo {
margin-right: auto;
margin-left: auto;
width: 750px;
text-align: center;
margin-top: 25px;
margin-bottom: 25px;
}
#izq {
width: 200px;
display: table-cell;
background-color: #0099FF;
margin-right: auto;
margin-left: auto;
padding: 5px;
}
#cen {
width: 200px;
display: table-cell;
background-color: #CC3333;
margin-right: auto;
margin-left: auto;
padding: 5px;
}
#der {
width: 200px;
display: table-cell;
background-color: #339933;
margin-right: auto;
margin-left: auto;
padding: 5px;
}
body {
font-family: Georgia, "Times New Roman", Times, serif;
}