Bonjour.
Je n'arrive pas à avoir la même présentation sur IE et sur FF.
Mon fichier index : J'ai supprimer tout ce qui ne concerne pas le css
Le fichier css
Sur IE le div left est juste en dessous du div header, mais il y a espace entre les 2 sur FF.
Du coup le div contenu est lui aussi décalé.
Merci de me dire où est le problème car j'ai beau essayer un tas de trucs mais ça marche pas
Je n'arrive pas à avoir la même présentation sur IE et sur FF.
Mon fichier index : J'ai supprimer tout ce qui ne concerne pas le css
<body>
<div id="global">
<div id="header">
</div>
<div id="container">
<div id="left">
<div id="menu" style="margin-top:15px">
</div>
<div id="containu">
</div>
</div>
</div>
Le fichier css
body {
margin: 0;
padding: 0;
background-color: black;
font-family: tahoma;verdana;
font-size: 12px;
}
#global{
width: 1000px;
margin: 0 auto;
background-color: yellow;
min-height: 800px
}
/**********************************/
/******* Header ******/
/**********************************/
#header{
margin:0 auto;
width:1000px;
height:100px;
background-width: 1000px;
background-height:200px;
background-color:#00FFFF;
font-color:#0000FF;
}
/**********************************/
/******* container ******/
/**********************************/
#container {
width:1000px;
margin:0 auto;
background-color:white;
min-height:720px
}
/**********************************/
/******* Left ******/
/**********************************/
#left{
color: #000;
margin-top:0px;
padding: 0px;
width:155px;
min-height:720px;
background-color:red;
}
/**********************************/
/******* containu ******/
/**********************************/
#containu {
position: absolute;
top:115px;
margin-left:155px;
color: white;
background-color:#0033FF;
font-size:14px;
font-family: tahoma;
padding: 0px;
width:700px;
min-height:710px;
}
Sur IE le div left est juste en dessous du div header, mais il y a espace entre les 2 sur FF.
Du coup le div contenu est lui aussi décalé.
Merci de me dire où est le problème car j'ai beau essayer un tas de trucs mais ça marche pas