Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/04/2009, 04:49
xurxinho
 
Fecha de Ingreso: marzo-2009
Mensajes: 171
Antigüedad: 15 años, 1 mes
Puntos: 4
Respuesta: dudas sobre centrar página

Me gusta mucho la solución de Wing.
Otra solución sería
Código:
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
	body{margin:0px;padding:0px;}
	table.contenedor{width:1024px;margin-top:30px;height:60px;border:1px solid  #000;}
</style>
</head>

<body>
<table class="contenedor" border="0" cellpadding="0" cellspacing="0" align="center">
	<tr>
		<td>
		Contenido contenido contenido
		</td>
	</tr>
</table>
</body>
</html>