Crew algemeen |
|
Het lukt me niet om de divs (mnuLeft, content en mnuRight) in respectievelijke volgorde naast elkaar te krijgen. Wat doe ik verkeerd?
Zonder te dringen, maar ik moet het antwoord voor 15.15h hebben (test )
<div align="center">
<div id="template">
<div id="header">
header
</div>
<div id="mnuLeft">m</div><div id="content">c</div>
<div id="mnuRight">mr</div>
</div>
</div>
<div align="center"> <div id="template"> <div id="header"> </div> <div id="mnuLeft">m</div><div id="content">c</div> <div id="mnuRight">mr</div> </div> </div>
css:
#template {
height: 500px;
width: 762px;
}
#header {
height: 30px;
width: 760px;
}
#mnuLeft {
height: 80%;
width: 80px;
}
#mnuRight {
height: 80%;
width: 80px;
float: right;
}
#content {
height: 80%;
width: 600px;
float: left;
padding-left: 80px;
}
#template { height: 500px; width: 762px; } #header { height: 30px; width: 760px; } #mnuLeft { height: 80%; width: 80px; } #mnuRight { height: 80%; width: 80px; float: right; } #content { height: 80%; width: 600px; float: left; padding-left: 80px; }
|