Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/08/2010, 07:47
Avatar de seudoCodigo
seudoCodigo
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Rico
Mensajes: 163
Antigüedad: 20 años, 6 meses
Puntos: 1
Respuesta: Centrar una web ¡soy incapaz!!

Prueba este código. Fíjate, como dijo @jomaruro, el truco es ponerle "margin: 0 auto;" al DIV global.

Código:
<style>
    #frame{
         margin:0 auto;
         border:1px solid red;
         width:900px;
    }
</style>

<div id="frame">
    <div id="header">Mi header<div>
    <div id="body">Body</div>
    </div id="footer">Footer</div>
</div>