PHP ver gevorderde |
|
ik heb een layout en in IE ziet hij goed uit, maar in FF is de onderkant precies iets te kort
dit is de css code voor dat stukje
div.onderkant{
width: 100%;
height: 26px;
background-image: url(layout/bg.png);
background-repeat: repeat;
background-position: center;
}
div.hoek_links_onder{
width: 26px;
height: 26px;
float: left;
background-image: url(layout/onder_l.png);
background-repeat: no-repeat;
}
div.onder_midden{
width: 90%;
height: 26px;
float: left;
background-color: #DEDEDE;
}
div.hoek_rechts_onder{
width: 26px;
height: 26px;
float: right;
background-image: url(layout/onder_r.png);
background-repeat: no-repeat;
}
div.onderkant{ width: 100%; height: 26px; background-image: url(layout/bg.png); background-repeat: repeat; background-position: center; } div.hoek_links_onder{ width: 26px; height: 26px; float: left; background-image: url(layout/onder_l.png); background-repeat: no-repeat; } div.onder_midden{ width: 90%; height: 26px; float: left; background-color: #DEDEDE; } div.hoek_rechts_onder{ width: 26px; height: 26px; float: right; background-image: url(layout/onder_r.png); background-repeat: no-repeat; }
de dit is de html van de onderkant
<div class="onderkant">
<div class="hoek_links_onder"></div>
<div class="onder_midden">Design en coding door dirtybolle | Versie <?=$versie; ?> </div>
<div class="hoek_rechts_onder"></div>
</div>
<div class="hoek_links_onder"></div> <div class="onder_midden">Design en coding door dirtybolle | Versie <?=$versie; ?> </div> <div class="hoek_rechts_onder"></div>
hoe los ik dat probleem op ?
|