Nieuw lid |
|
In IE komt het er uit te zien zoals het bedoeld was. Op 1 puntje na. Ik had verwacht dat box 1 t/m 3 genest zit in div id=”body_middle”. En dit lijkt niet het geval te zijn.
In FF gaat het helemaal fout. Het lijkt wel of er geen enkele div genest zit
Het achtergrond plaatje wordt niet getoond wanneer deze div=”body_container” op height:auto staat. Geef ik deze height een hoogte mee dan wordt deze wel getoond.
Mja dan is de pagina niet flexibel meer.
Ik had verwacht dat de div=”body_container” waar alles genest inzit mee zou groeien in hoogte als een van de andere div’s hoger wordt. Dit lijkt niet in FF te gebeuren.
In IE doet deze div van wat ik er van verwacht en laat hij wel de achtergrond plaatje zien. Dan lijkt het wel of alles wel weer genest is. Raar snappen jullie dit nou?
Wat gaat hier allemaal fout?
Groet,
Roland.
hmtl
<div id="body_container">
<div id="body_header">logo</div>
<div id="body_middle">container box bovenkant
<div class="body_middle_left">box 1</div>
<div class="body_middle_mid">box 2</div>
<div class="body_middle_right">box 3</div>
container box onderkant
</div><!-- einde body_middle -->
</div><!-- einde body_container -->
<div id="body_container"> <div id="body_header">logo</div> <div id="body_middle">container box bovenkant <div class="body_middle_left">box 1</div> <div class="body_middle_mid">box 2</div> <div class="body_middle_right">box 3</div> container box onderkant </div><!-- einde body_middle --> </div><!-- einde body_container -->
css
body {
background-color:#FCFDFE;
text-align:center;
color:#333;
margin:0;
padding:0;
}
div#body_container {
background: url(../img/background.jpg) repeat-y center;
border-left:solid 1px #CCC;
border-right:solid 1px #CCC;
margin:0 auto 0 auto;
width:976px;
height:auto;
}
div#body_header {
background-color:orange;
width:auto;
height:151px;
}
div#body_middle {
width:100%;
height:auto;
}
div.body_middle_left {
float:left;
width:40%;
height:450px;
border:1px dotted blue;
}
div.body_middle_mid {
background-color:yellow;
float:left;
width:20%;
height:450px;
border:1px dotted yellow;
}
div.body_middle_right {
float:left;
width:39%;
height:450px;
border:1px dotted blue;
}
body { background-color:#FCFDFE; text-align:center; color:#333; margin:0; padding:0; } div#body_container { background: url(../img/background.jpg) repeat-y center; border-left:solid 1px #CCC; border-right:solid 1px #CCC; margin:0 auto 0 auto; width:976px; height:auto; } div#body_header { background-color:orange; width:auto; height:151px; } div#body_middle { width:100%; height:auto; } div.body_middle_left { float:left; width:40%; height:450px; border:1px dotted blue; } div.body_middle_mid { background-color:yellow; float:left; width:20%; height:450px; border:1px dotted yellow; } div.body_middle_right { float:left; width:39%; height:450px; border:1px dotted blue; }
|