Bonjour, j'ai fait une structure avec un Float dans un CSS :
quand je n'affiche qu'une seule "case" menu tout est ok... dés que je met une deuxieme, le corps passe dessous !
une idée?
merci de votre aide
#menu
{
width: 180px;
margin-bottom: 20px;
margin-top: 20px;
}
.menuTitre
{
background-image: url("_img/menutitre.jpg");
background-repeat: no-repeat;
height: 30px;
text-align: center;
font-family: "Arial", Verdana, serif;
font-size: 14px;
font-weight: bold;
color: Red;
padding-top: 4px;
margin-bottom: 6px;
margin-top: 20px;
}
.menuH
{
background-image: url("_img/menuH.jpg");
background-repeat: no-repeat;
height: 18px;
text-align: center;
font-family: "Arial", Verdana, serif;
}
.menuC
{
background-image: url("_img/menuC.jpg");
background-repeat: repeat-y;
text-align: center;
font-family: "Arial", Verdana, serif;
font-size: 12px;
padding-left: 10px;
padding-right: 10px;
}
.menuB
{
background-image: url("_img/menuB.jpg");
background-repeat: no-repeat;
height: 18px
}
#corps
{
float: left;
margin-left: 190px;
margin-bottom: 20px;
margin-top: 20px
width: 800px;
}
.corpsH
{
background-image: url("_img/corpsH.jpg");
background-repeat: no-repeat;
height: 22px;
}
.corpsC
{
background-image: url("_img/corpsC.jpg");
background-repeat: repeat-y;
background-position: top;
text-align: justify;
font-family: "Arial", Verdana, serif;
font-size: 12px;
padding-left: 12px;
padding-right: 12px;
}
.corpsB
{
background-image: url("_img/corpsB.jpg");
background-repeat: no-repeat;
height: 22px;
}
quand je n'affiche qu'une seule "case" menu tout est ok... dés que je met une deuxieme, le corps passe dessous !
une idée?
merci de votre aide