Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/04/2012, 12:34
Avatar de cristian_cena
cristian_cena
Colaborador
 
Fecha de Ingreso: junio-2009
Mensajes: 2.244
Antigüedad: 14 años, 10 meses
Puntos: 269
Respuesta: Bottom en position relative???

algo así?
Código HTML:
Ver original
  1. <div id="container">
  2.     <p> hola </p>
  3.     <div id="footerdelcontainer"> hello </div>
  4. </div>

Código CSS:
Ver original
  1. #container{
  2.     width: 600px;
  3.     height: 400px;
  4.     background: red;
  5.     position: relative;
  6. }
  7. #footerdelcontainer{
  8.     position: absolute;
  9.     bottom: 5px;
  10.     background: yellow;
  11.     width: 600px;
  12. }