Bonsoir,
Je cherche à aligner 3 blocs horizontalement de manière à former une bannière.
Mon problème : mes blocs ne sont pas alignés et le bloc central disparait comme vous pouvez le voir ici.
Code XHTML :
Code CSS :
Modifié par flax (11 Nov 2007 - 00:06)
Je cherche à aligner 3 blocs horizontalement de manière à former une bannière.
Mon problème : mes blocs ne sont pas alignés et le bloc central disparait comme vous pouvez le voir ici.
Code XHTML :
<div id="header">
<div id="logo"></div>
<div id="accueil"></div>
<div id="categories"></div>
<div id="marchands"></div>
<div id="profil"></div>
<div id="deconnexion"></div>
<div id="addcode"></div>
</div>
Code CSS :
#header {
width: 800px;
height: 150px;
}
#logo {
width: 390px;
height: 150px;
display: inline;
float: left;
background-image: url(images/images/header_01.gif);
}
#colone1 {
width: 167px;
height: 150px;
display: inline;
float: left;
}
#accueil {
width: 167px;
height: 50px;
background-image: url(images/images/header_02.gif);
}
#categories {
width: 167px;
height: 50px;
background-image: url(images/images/header_04.gif);
}
#marchands {
width: 167px;
height: 50px;
background-image: url(images/images/header_06.gif);
}
#colone2 {
width: 243px;
height: 150px;
display: inline;
float: left;
}
#profil {
width: 243px;
height: 50px;
background-image: url(images/images/header_03.gif);
}
#deconnexion {
width: 243px;
height: 50px;
background-image: url(images/images/header_05.gif);
}
#addcode {
width: 243px;
height: 50px;
background-image: url(images/images/header_07.gif);
}
Modifié par flax (11 Nov 2007 - 00:06)