bonjours
je fait un site, cependant lorsque je met du contenu dans mes div, notament la TAG h1 ou input
mon div, se déplace d'environ 20px vers le bas,
je ne trouve pas d'où peut venir l'erreur
je vous donne un condenser de ce que je fait.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>">
<html xmlns="<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>">
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1" />
<title>Immobilier</title>
<link href="css/global.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jQuery.js"></script>
<script type="text/javascript" src="js/control_formulaire.js"></script>
</head>
<body>
<div id="mise-en-page">
<div id="header">
<div id="gauche-pour-les-pub"></div>
<div id="pub-google"></div>
<div id="droite-pour-les-pub"></div>
</div>
<div id="page-central">
<div id="arondi-cadre-haut-page-central"></div>
<!-- ERREUR SUR LE ID CONNECTION, LE DIV SE DÉPLACE -->
<div id="connection"><h1> connection + a et input nom + MDP</h1></div>
<div id="stat-bien-immo"><h1>Statiqtique sur les bien immo</h1></div>
<div id="flash-bien-immo"><h1>diaporama fla</h1></div>
</div>
</div>
</div>
</body>
</html>
et le css
/* Choix des couleurs
baclgroung = #FFFFFF
color: #990000
*/
/* Parametre par default */
body {
margin: 0;
padding: 0;
background-image: url(../img/mep/blackgroung.gif);
background-repeat: repeat-x;
}
#mise-en-page {
width: 980px;
height: auto;
margin-right: auto;
margin-left: auto;
}
/* mise en place de l'espace publicité*/
#header{
height: 120px;
margin-bottom: 35px;
}
#gauche-pour-les-pub
{
background-image: url(../img/mep/gauche-pour-les-publicite.gif);
background-repeat: no-repeat;
height: 120px;
width: 10px;
float: left;
}
#droite-pour-les-pub{
background-image: url(../img/mep/droite-pour-les-publicite.gif);
background-repeat: no-repeat;
height: 120px;
width: 10px;
float: left;
}
#pub-google{
height: 120px;
float: left;
width: 960px;
background-color: #000000;
}
/* mise en place du cadre principal*/
#page-central
{
}
#arondi-cadre-haut-page-central
{
background-image: url(../img/mep/Haut-cadre.gif);
height: 10px;
}
#connection
{
height: 24px;
background-color: #000000;
}
#stat-bien-immo{
width: 400px;
float: left;
height: 311px;
}
#flash-bien-immo{
float: left;
height: 311px;
width: 580px;
}
/* Redifinition des H1 a H6*/
h1{
color: #990000;
}