Bonjour,
Je fais un site pour un copain, je commence à coder pour afficher mon header compatible pour toutes les resolutions, sur firefox, comme d'habitude pas de problème, sur IE un peu plus. Le lien : http://ntprod.info/ext/
Ca fait beaucoup de div sur la page html ?! Mais bon ca marche sur Firefox,
sur IE tout etait afficher n'importe comment avant que je passe les width: 100% en width: auto; , en auto ça s'affiche un peu mieu, il y a juste des marges entres les images, j'ai essayer de rectifier avec des padding, margin et des display:block; mais rien a faire.
Si vous avez une idée ?
Merci pour vos réponses, A bientôt
Je fais un site pour un copain, je commence à coder pour afficher mon header compatible pour toutes les resolutions, sur firefox, comme d'habitude pas de problème, sur IE un peu plus. Le lien : http://ntprod.info/ext/
body {
margin: 0px 8% 0px 8%;
}
/* Affichage Header */
.headleft
{
float: left;
width: 184px;
height: 107px;
background-image: url("head_left.gif");
background-repeat: no-repeat;
}
.headback
{
width: auto;
height: 107px;
background-image: url("head_back.gif");
background-repeat: repeat;
}
.headright
{
float: right;
width: 191px;
height: 107px;
background-image: url("head_right.gif");
background-repeat: no-repeat;
}
/* Affichage Menu */
.menuleft
{
float: left;
width: 2px;
height: 22px;
background-image: url("menu_left.gif");
background-repeat: no-repeat;
}
.menuback
{
width: auto;
height: 22px;
background-image: url("menu_back.gif");
background-repeat: repeat;
}
.menuright
{
float: right;
width: 2px;
height: 22px;
background-image: url("menu_right.gif");
background-repeat: no-repeat;
}
<body>
<div class="headleft"></div>
<div class="headright"></div>
<div class="headback"></div>
<div class="menuleft"></div>
<div class="menuright"></div>
<div class="menuback"></div>
</body>
Ca fait beaucoup de div sur la page html ?! Mais bon ca marche sur Firefox,
sur IE tout etait afficher n'importe comment avant que je passe les width: 100% en width: auto; , en auto ça s'affiche un peu mieu, il y a juste des marges entres les images, j'ai essayer de rectifier avec des padding, margin et des display:block; mais rien a faire.
Si vous avez une idée ?
Merci pour vos réponses, A bientôt