J'ai pu corriger le problème.
Pour l'espacement, j'ai ajouté une "margin-top" negative dans la balise H2.
Pour le decalement, j'ai fait la meme chose avec margin-left. Mais j'ai un autre probleme ^^
Avec Mozilla, il n'y avait pas de decalement avant que je fasse la modification, donc c'etait tout bon. Mais avec IE il y en avait 1. En ajoutant la balise "margin-left", j'ai corrigé le decalement dans IE...mais j'en ai créé un dans mozilla!!!
Comment puis-je aligner les 2 images (qui font toutes 2 800px de largeur) dans IE, sans les desaligner dans Mozilla??? Ou bien pourquoi IE me fait un espacement ou il ne devrait pas y en avoir??
merci
Page CSS modifiée (ecartement dans Mozilla, pas dans IE) :
H1
{
background-image:url(../Images/BordSup.jpg);
max-width:800px; /*Pas pris en charge par IE*/
background-position:top;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:24px;
color:#FF0000;
text-align:center;
/*height: 60px; */
background-repeat: no-repeat; /*image ne se répète pas*/
background-color: white;
margin-top:5px;
padding-top:27px;
padding-bottom:40px;
}
H2
{
background-image:url(../Images/Milieu.jpg);
background-repeat:repeat-y;
background-color:#FFFFFF;
font-family:Verdana, Arial, Helvetica, sans-serif;
color:#3333FF;
text-decoration:underline;
text-align:center;
margin-top:-40px;
margin-left:-10px;
}
Imagination is more important than knowledge.