dan zet je toch gewoon de height ook op 85%, of zelfs op 100%?
anders stel je ipv een percentage van #content ook een aantal ixels in, dan is het bij beide hetzelfde
met een overall div en een relative positionering
#overall{
height:85%;
width:75%;
}
#links {
width: 125px;
height: 100%;
float: left;
background: #D3D3D3;
color: #808080;
}
#content {
height: 100%;
text-align: justify;
border-left: 0px solid #cccccc;
border-right: 0px solid #cccccc;
margin-left: 125px;
padding: 20px;
}
+-overall------------------+
- +links-+-content------+-
- - - - -
- - - - -
- - - - -
- - - - -
- - - - -
- +------+---------------+ -
+---------------------------+
en dan zo invoegen
Ja ik heb al een geheel overdekkende div :
#c-col{
position: relative;
width: 800px;
border: 1px solid #000000;
background: #F5F5F5;
color: #333333;
padding: 0px;
z-index: 0;
}
#links {
width: 125px;
height: 700px;
float: left;
background: #D3D3D3;
color: #808080;
position: absolute;
top: [aantal px];
left: [aantal px];
#content {
text-align: justify;
border-left: 0px solid #cccccc;
border-right: 0px solid #cccccc;
margin: 0px;
padding: 20px;
width: 125px;
height: 700px;
position: absolute;
top: [aantal px];
left: [aantal px];
Ik doe het altijd zo.. :]
Ik zal eens wat proberen :)
Ja dat had ik met dat scriptje van mij mee geprobeerd... daar kan je de posities namelijk erg precies mee bepalen!