Bonjour à tous,
Je suis confronté à un problème sous ie 6 et 7.
Code HTML
CSS
Mon problème viens du margin:60px auto 0px auto; de la div recherches. Sous ie 6 et 7 si j'affiche les deux div en absolute (et seulement dans se cas la) le top de la margin ne s'effectu pas
Pouvez-vous m'aidez à comprendre ce qu'il se passe ?
Modifié par Gnarkk (21 Sep 2007 - 11:54)
Je suis confronté à un problème sous ie 6 et 7.
Code HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>________</title>
<link type="text/css" rel="stylesheet" href="veosearch.css" />
</head>
<body>
<div id="global">
<div id="logo-moteurs"><img src="images/logo-moteurs.png" alt="" /></div>
<div id="login-top">
<p id="nbr-soutien"><a href="#">Vous soutenez <strong>0</strong> projet</a></p>
<p id="login-info"><a href="#">Inscrivez-vous</a></p>
</div>
<div id="recherches">
<img src="images/logo.png" alt="" />
<p><a href="#" class="current">Web</a> | <a href="#">Image</a> | <a href="#">Blog</a> | <a href="#">Vidéo</a> | <a href="#">Wiki</a></p>
<div id="recherche-barre">
<form action="#" method="post">
<p id="textbox"><input type="text" /></p><p><input type="image" src="images/background-recherche-barre-droite.png" /></p>
</form>
</div>
<p id="slogan">Donnez du sens à votre recherche !</p>
</div>
<div id="contenu">
<div class="info">
<h1>1 RECHERCHE = 1 DON</h1>
</div>
<div class="info">
<h1>LEURS PROJET EN VIDÉO</h1>
</div>
<div class="info">
<h1>LE CONSEIL DU JOUR</h1>
</div>
</div>
<div id="bottom">
<p>
<strong>
<a href="#">Projets</a> |
<a href="#">Associations</a> |
<a href="#">Qui sommes nous ?</a> |
<a href="#">Nous aider</a> |
<a href="#">Blog</a>
</strong>
</p>
</div>
<div id="bottom2">
<p>
<a href="#">Charte</a> |
<a href="#">F.A.Q.</a> |
<a href="#">Partenaires</a> |
<a href="#">Contacts</a> |
<a href="#">Presse</a> |
<a href="#">Mentions Légales</a>
</p>
</div>
</div>
</body>
</html>
CSS
* {
margin:0px;
padding:0px;
}
body {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#1070b3;
}
a { color:#1070b3; text-decoration:none; }
a:hover { text-decoration:underline; }
div#global {
position:relative;
margin-left:auto;
margin-right:auto;
margin-top:10px;
width:990px;
}
div#logo-moteurs {
position:absolute;
top:0px;
left:0px;
}
div#login-top {
position:absolute;
top:0px;
right:0px;
background-image:url(images/background-login.png);
width:279px;
height:31px;
line-height:31px;
}
div#login-top p { float:left; text-align:center; }
div#login-top p#nbr-soutien { width:156px; }
div#login-top p#login-info { width:123px; font-weight:bold; }
div#recherches {
position:relative;
margin:60px auto 0px auto;
width:442px;
text-align:center;
border:1px solid black;
}
div#recherches p { text-align:left; color:#ccc; }
div#recherches a.current { font-weight:bold; }
div#recherche-barre {
margin:3px 0px;
text-align:left;
height:27px;
}
div#recherche-barre p { height:27px; float:left; }
div#recherche-barre p#textbox {
width:412px;
background-image:url(images/background-recherche-barre-gauche.png);
text-align:center;
}
div#recherche-barre p#textbox input { margin-top:4px; width:400px; border:0px; }
div#recherches p#slogan {
color:#b3c2e1;
text-align:right;
font-size:14px;
font-weight:bold;
}
div#contenu {
position:relative;
margin:30px auto 0px auto;
width:807px;
height:156px;
border:1px solid;
}
div#contenu div.info {
float:left;
width:247px;
height:156px;
background-image:url(images/background-contenu-index.png);
margin:0px 11px;
}
div#contenu div.info h1 {
text-align:center;
color:#f29400;
font-size:14px;
}
div#bottom {
position:relative;
margin:20px auto 0px auto;
width:807px;
height:21px;
line-height:21px;
background-image:url(images/background-bottom.png);
background-repeat:no-repeat;
background-position:center;
text-align:center;
}
div#bottom2 {
position:relative;
text-align:center;
font-size:11px;
}
div#bottom3 {
position:relative;
margin-top:10px;
text-align:center;
}
div#bottom3 a {
font-weight:bold;
text-decoration:underline;
}
Mon problème viens du margin:60px auto 0px auto; de la div recherches. Sous ie 6 et 7 si j'affiche les deux div en absolute (et seulement dans se cas la) le top de la margin ne s'effectu pas

Pouvez-vous m'aidez à comprendre ce qu'il se passe ?
Modifié par Gnarkk (21 Sep 2007 - 11:54)