Lid |
|
Hy,
Ik heb het volgende probleem: de div waarin twee andere divs staan met de eigenschap float:left pas zich niet aan aan de hoogte van die divs.
Html code (de inhoud (tekst) heb ik weggelaten):
<div id="header"></div>
<div id="inhoud">
<div id="sub_links"></div>
<div id="sub_rechts"></div>
</div>
<div id="footer"></div>
De css code (header en footer heb ik weggelaten):
#inhoud{
background: #ededed;
width:967px;
height:auto;
}
#sub_links{
height:100%;
width:656px;
float:left;
}
#sub_rechts{
background:#d6d6d6;
height:100%;
width:311px;
float:left;
}
#inhoud{ background: #ededed; width:967px; height:auto; } #sub_links{ height:100%; width:656px; float:left; } #sub_rechts{ background:#d6d6d6; height:100%; width:311px; float:left; }
Van te voren: bedankt
|