ahi quedó centrado en los dos browsers
Código HTML:
<style>
body {
margin:0;
padding: 0;
font-size:80%;
text-align:center;
}
#content {
text-align:center;
margin: auto;
background-color:#ff0;
width:800px;
height:800px;
}
#cabecera {
width: 800px;
height:100px;
margin:auto;
background-color:#f00;
}
#menu {
width:150px;
height:650px;
float:left;
background-color:#888;
}
#contenido {
width:650px;
height:650px;
float:left;
background-color:#ccc;
}
#pie {
clear:both;
width:800px;
height:50px;
background-color:#0f0;
}
</style>
DX