Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/02/2008, 15:23
bendi82
 
Fecha de Ingreso: julio-2007
Mensajes: 7
Antigüedad: 16 años, 9 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!!!