04/02/2008, 15:23
|
| | Fecha de Ingreso: julio-2007
Mensajes: 7
Antigüedad: 17 años, 6 meses Puntos: 1 | |
Re: Posicionar DIV abajo del todo del website Hola,
Prueba con esto:
Código:
<html>
<head>
<style>
#contenedor{
position:relative;
}
#prueba{
position: absolute;
bottom: 0%;
width: 800px;
height: 10px;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="prueba">
<?php include ("bottom.php"); ?>
</div>
</div>
</body>
</html>
Suerte!!! |