05/02/2007, 04:54
|
| | | Fecha de Ingreso: febrero-2007 Ubicación: Madrid
Mensajes: 49
Antigüedad: 17 años, 11 meses Puntos: 0 | |
Re: Problema con un margin-bottom:0px; Cita: <head>
<title>Pie de pagina</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<style type="text/css">
html, body { height: 92%;
}
div#contenedor { width: 90%;
background-color: rgb(102, 204, 204);
position: absolute;
height: auto ! important;
min-height: 100%;
height: 100%;
}
div#pie { background-color: rgb(0, 102, 0);
position: absolute;
bottom: 0pt;
left: 0pt;
width: 100%;
height: 30px;
margin-bottom: -30px;
clear: both;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="pie"></div>
</div>
</body>
</html> |