Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/11/2010, 18:35
PrendekZ
 
Fecha de Ingreso: noviembre-2009
Ubicación: Colombía
Mensajes: 311
Antigüedad: 14 años, 4 meses
Puntos: 17
Respuesta: Ayuda con medidas

HTML:

Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<link rel="stylesheet" type="text/css" href="css.css" />
</head>

<body>
<div id="contenedor">
<img src"logo.png" />
<div id="cuerpo"></div>
</div>

</body>
</html>
CSS:

Cita:
body {
padding:0;
margin:0;
}

#contenedor{
width:800px;
margin:0 auto;
}
#cuerpo{
background:#fff;
width:800px;
-moz-border-radius:8px;
}
Prueba con esto!