29/12/2006, 05:57
|
| | | Fecha de Ingreso: noviembre-2006
Mensajes: 262
Antigüedad: 18 años, 3 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>
|