Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/02/2014, 15:54
RaulCDT
 
Fecha de Ingreso: febrero-2014
Ubicación: Murcia
Mensajes: 119
Antigüedad: 10 años, 2 meses
Puntos: 0
Footer por debajo

¿Porque se me ve el footer por debajo del contenido de la hoja?


Código CSS:
Ver original
  1. #contenedor {
  2.   display: table;
  3.   overflow: hidden;
  4. }
  5.  
  6. #contenidos {
  7.   display: table-row;
  8. }
  9.  
  10. .columna1 {
  11.     float: left;
  12.     width:670px;
  13.     background: #FFF;
  14.     min-height: 335px;
  15. }
  16. .columna2a {
  17.     float: right;
  18.     width:325px;
  19.     background: #000;
  20.     min-height: 500px;
  21. }

Y el footer

Código CSS:
Ver original
  1. #pie {text-align: center;
  2. background-color: #1f2024;
  3. color: #fff;
  4. height: 3em;
  5. margin-top: -3em;
  6. }
  7. .ejemplo {position:relative; top: 0.5em;
  8. font-size: 1em;
  9. }