Voila , je suis tout nouveau ici , je developpe actuelement un site pour un terrain de VTT dirt, j'aimerai le faire valide, donc CSS/Xhtml !
Voila mon problème :
Firefox afiche le site correctement comme cela :
http://img132.imageshack.us/img132/2463/temp5al.th.jpg
IE lui comme cela :
http://img364.imageshack.us/img364/9582/temp9vt.th.jpg
Mon code :
Et le CSS :
J'ai cherché je n'est pas trouvé , merci d'avance !
Ronan
Modifié par Ronan (24 Mar 2006 - 10:06)
Voila mon problème :
Firefox afiche le site correctement comme cela :
http://img132.imageshack.us/img132/2463/temp5al.th.jpg
IE lui comme cela :
http://img364.imageshack.us/img364/9582/temp9vt.th.jpg
Mon code :
<body>
<div id="global">
<div id="header">
</div>
<div id="menu_h_g">
</div>
<div id="menu_h_d">
</div>
<div id="menu_v_g">
test
test
<div id="contenu">
Contenu global
</div>
</div>
<div id="footer">
</div>
</div>
</body>
Et le CSS :
body {
margin: auto; /* pour éviter les marges */
text-align: center; /* pour corriger le bug de centrage IE */
}
#global {
margin-left: auto;
margin-right: auto;
width: 800;
text-align: left; /* on rétablit l'alignement normal du texte */
}
#header {
background-image: url(../images/banniere.jpg);
width: 800px;
height: 123px;
}
#menu_h_g {
background-image: url(../images/menu_h_g.jpg);
background-repeat: no-repeat;
width: 154px;
height: 35px;
float:left;
}
#menu_h_d {
background-image: url(../images/menu_h_d.jpg);
background-repeat: repeat-x;
height: 35px;
width: 646px;
margin-left:154px;
}
#menu_v_g {
background-image: url(../images/menu_v_bg.jpg);
background-repeat: repeat-y;
width: 151px;
float: left;
}
#contenu {
width: 649px;
margin-left:151px;
}
#footer {
background-image: url(../images/footer_bg.jpg);
width: 800px;
height: 19px;
clear:both;
}
J'ai cherché je n'est pas trouvé , merci d'avance !
Ronan
Modifié par Ronan (24 Mar 2006 - 10:06)