Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/10/2011, 10:47
opzina
 
Fecha de Ingreso: marzo-2008
Mensajes: 1.020
Antigüedad: 16 años, 1 mes
Puntos: 21
Respuesta: Sticky footer o pegar abajo siempre el footer

Prueba con position fixed y bottom 0. (Disculpas esto es para otra cosa)

Código CSS:
Ver original
  1. * {
  2.     margin: 0;
  3. }
  4. html, body {
  5.     height: 100%;
  6. }
  7. .wrapper {
  8.     min-height: 100%;
  9.     height: auto !important;
  10.     height: 100%;
  11.     margin: 0 auto -142px;
  12. }
  13. .footer, .push {
  14.     height: 142px;
  15. }
__________________
_

Última edición por opzina; 16/10/2011 a las 10:57