Ver Mensaje Individual
  #12 (permalink)  
Antiguo 30/12/2006, 05:22
GoRaK
 
Fecha de Ingreso: julio-2005
Mensajes: 220
Antigüedad: 18 años, 8 meses
Puntos: 0
Re: Centrar página con CSS

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">

<head>
  <title></title>
  <style>
	html{margin:0;padding:0;}
	body{margin:5px 0;padding:0;}
	#contenido{width:750px;border:1px solid #000;margin:auto;}
        p{text-align:center;}

  </style>
</head>

<body>
<div id="contenido">
<p>Contenido centrado</p>
</div>

</body>

</html>
Saludos!!