salut, j'ai commencé y'a pas longtemps à coder en xhtml/css, j'ai réussi a bien coder mon site et il passe nickel sous firefox mais je l'ai essayé avec IE et la le corps était sous le menu, j'ai ensuite enlevé la largeur du bloc-texte (corps) et bizarrement c'est toujours bon sous firefox et ca déconne toujours sur IE mais moins, en effet le corps n'est plus sous les menu ais a droite (il doit être la!) mais il est décallé de quelques pixels sur la droite et le footer qui doit toucher le corps est décallé d'une 20aine de pixels, merci d'avance de m'aider !
voici mon code CSS :
body
{
width: 862px;
margin: auto;
margin-top: 15px;
margin-bottom: 15px;
font-family: "Palatino Linotype", "Century Schoolbook", "arial narrow", serif, arial;
font-size: 13px;
}

#en_tete
{
width: 862px;
height: 156px;
background-image: url("images/header.jpg");
background-repeat: no-repeat;
background-color: transparent;
}

#lien_principaux
{
width: 862px;
text-align: center;
color: #006AFB;
background-repeat: no-repeat;
background-image: url("images/lien-principaux.jpg");
background-color: #E3E3E3;
}

#menu
{
float: left;
width: 169px;
text-align: center;
color: #006AFB;
font-size: 12px;
}

.element_menu
{
background-image: url("images/bloc-lien.jpg");
background-repeat: no-repeat;
background-color: transparent;
height: 217px;
margin-bottom: 12px;
}
a
{
text-decoration: none;
color: #006AFB;
}

a:hover
{
text-decoration: non;
color: #006AFB;
}

a:active
{
text-decoration: none;
}

#corps
{
height: 903px;
margin-left: 169px;
padding-left: 15px;
background-image: url("images/bloc-principal.jpg");
background-repeat: no-repeat;
background-color: #FFFFFF;
color: #006AFB;
}

.date
{
color: red;
font-size: 12px;
}
.titre
{
font-size: 18px;
text-decoration: underline;
}

#footer
{

width: 693px;
height: 40px;
margin-left: 169px;
background-image: url("images/footer.jpg");
background-color: #FFFFFF;
text-align: center;
color: #006AFB;
}

.copyright
{
padding-top: 4px;
}

#logo_bas
{
text-align: right;
}
que pensez-vous que je devrais modifier/rajouter pour que ca marche aussi avec IE ?