Hola a todos,
tengo un problemilla al ajustar unos divs a la altura del navegador.En la parte inferior no se adapta.El codigo es este:
Código:
<html>
<style>
body {
margin: 6;
background-color:#ECF3F6;
height:100%;
}
#contenedor{
width: 100%;
background-color: #ECF3F6;
border: 1px solid #000000;
height:100%;
}
#cabecera{
height:70px;
background-color: #cbcbcb;
}
#menu_izda{
float: left;
width: 250px;
margin: 0;
background-color: White;
height: 100%;
}
#barra {
background-color: blue;
position: absolute;
left:256px;
width : 6px;
height: 100%;
}
#contenido{
margin-left: 254px;
height: 100%;
}
</style>
<body>
<div id="contenedor">
<DIV id=cabecera>
cabecera
</DIV>
<div id="menu_izda">
menu
</div>
<div id=barra>
</div>
<div id="contenido">
Contenido
<table border=0 width=100%>
<tr>
<td>
<input type=text width=250>
<input type=text width=250>
<input type=text width=250>
<input type=text width=250>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>