Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/07/2008, 07:29
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Respuesta: Poner color a los margenes

¿Algo parecido a esto?

Cita:
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
html, body {height:100%;
margin: 0;
padding: 0;
}
body {background-color: yellow;
}
#contenido {margin-left: 22em;
margin-right: 22em;
background-color: white;
height:100%;
}
</style>
</head>
<body>
<div id="contenido"></div>
</div>
</body>
</html>
Mikel.