Ver Mensaje Individual
  #6 (permalink)  
Antiguo 29/12/2006, 05:57
Avatar de Shade
Shade
 
Fecha de Ingreso: noviembre-2006
Mensajes: 262
Antigüedad: 17 años, 6 meses
Puntos: 1
Re: Centrar página con CSS

A ver. Si antes tenias:
Código:
<html>
<head>
<style type="text/css">
body {text-align: center;}
</style>
</head>
<body>
..................................
</body>
</html>
Debes cambiarlo a:

Código:
<html>
<head>
<style type="text/css">
#contenido { margin: 0px auto; }
</style>
</head>
<body>
<div id="contenido">
..................................
</div>
</body>
</html>