Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/02/2007, 05:14
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Re: Problema con un margin-bottom:0px;

Parece que estás en un proyecto serio

Prueba con esto a ver si te sirve:

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Pie de pagina</title>
  <meta http-equiv="Content-Type"
 content="text/html; charset=iso-8859-1" />
  <style type="text/css">
html, body { height: 98%;
overflow: hidden;
}
div#contenedor { width: 90%;background-color: rgb(102, 204, 204);
position: absolute;
height: auto ! important;
min-height: 100%;
height: 100%;
}
div#pie { background-color: rgb(0, 102, 0);
position: absolute;
bottom: 0pt;
left: 0pt;
width: 100%;
height: 30px;
clear: both;
}
  </style>
</head>
<body>
<div id="contenedor">
<div id="pie"></div>
</div>
</body>
</html>
Mikel.