Je vous ai mis un exemple sur ce lien
http://leia80.free.fr/
Comme vous voyez, sous Mozilla, tout est nickel, et sous IE 7, il y a un espace blanc en haut, un autre en bas, et le bandeau contenant le titre de la rubrique dépasse sur la droite.
Voici le code de ma page css. Merci de me dire s'il manque quelque chose, car c'est la première fois que je fais un site en css :
body {
background-color: #DBE4F7;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 10pt;
text-align: center;
margin: 0;
padding: 0;
}
img {
margin: 0;
border: 0;
}
#conteneur
{
position: absolute;
width: 780px;
left: 50%;
margin-left: -390px;
}
/* Bandeau */
#bandeau {
position: absolute;
top: 0px;
border: solid 1px;
left: 0px;
height: 131px;
width: 780px;
background-color: #ffffff;
}
#bandeau_haut {
position: absolute;
top: 0px;
left: 0px;
bordure: 0px;
width: 100%;
height: 12px;
background-image: url(../images/fond.gif);
border-bottom: solid;
border-width: 1px;
font-size: 1px;
line-height: 1px;
}
#image_bandeau_1 {
position: absolute;
top: 13px;
left: 0px;
width: 113px;
height: 97px;
background-image: url(../images/bandeau_r1_c1.jpg);
}
#image_bandeau_2 {
position: absolute;
top: 13px;
left: 113px;
width: 274px;
height: 97px;
background-color: #D8D9DB;
}
#image_bandeau_3 {
position: absolute;
top: 13px;
left: 387px;
width: 131px;
height: 97px;
background-image: url(../images/bandeau_r1_c4.jpg);
border-left: solid;
border-right: solid;
border-width: 1px;
}
#image_bandeau_4 {
position: absolute;
top: 13px;
left: 517px;
width: 132px;
height: 97px;
background-image: url(../images/bandeau_r1_c6.jpg);
border-left: solid;
border-width: 1px;
}
#image_bandeau_5 {
position: absolute;
top: 13px;
left: 648px;
width: 131px;
height: 97px;
background-image: url(../images/bandeau_r1_c8.jpg);
border-left: solid;
border-width: 1px;
}
#bandeau_bas {
position: absolute;
left: 0px;
width: 100%;
top: 109px;
height: 20px;
background-image: url(../images/fond.gif);
border-top: solid;
border-width: 1px;
}
/* Menu */
#tableau_menu {
width: 100%;
padding: 0px;
border-spacing: 0px;
border-width: 0px;
}
.rubrique_selection
{
font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
font-size: 12px;
font-weight: bold;
color: #DBE4F7;
}
.rubrique
{
font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
font-size: 12px;
color: #FFFFFF;
}
/* Contenu */
#conteneur_contenu
{
position: absolute;
top: 131px;
left: 0px;
width: 780px;
height: 500px;
background-color: #D8D9DB;
border: solid;
border-width: 1px;
}
#colonne_verte {
position: absolute;
top: 0px;
left: 0px;
width: 11px;
height: 100%;
background-image: url(../images/pointilles_verts.gif);
border-right: solid 1px;
}
#titre {
position: absolute;
top: 20px;
left: 12px;
text-align: left;
height: 20px;
width: 768px;
background-color: #DBE4F7;
border-top: dotted 1px #AA2B00;
border-bottom: dotted 1px #AA2B00;
}
/* Bas */
#bandeau_toutbas {
position: absolute;
left: 0px;
width: 100%;
top: 633px;
height: 20px;
background-image: url(../images/fond.gif);
border-bottom: solid;
border-left: solid;
border-right: solid;
border-width: 1px;
}
Modifié par leia80 (09 Mar 2007 - 14:51)