Probleme CSS entre FF et IE - HTML/CSS - Programmation
Marsh Posté le 29-05-2008 à 16:21:57
le Javascript
Citation : <!-- |
et le html
Citation : <div class="menucell"> |
Alors sous FF, les Sous Menu s'affichent en pile en dessous du Menu(du block DT) mais sous IE7 ils s'affiche sur la droite du block DT des Menus?
Pouvez-vous m'expliquer?
Mici
Marsh Posté le 29-05-2008 à 16:13:02
Bonjour,
Voilà, j'ai crée(enfin c'est mon but de le créer) un petit menu déroulant avec HTML/CSS/Javascript comme de coutume.
Le truc c'est que sous FF cela fonctionne parfaitement et que sous IE ben cela fonctionne aussi, mais pas parfaitement
le CSS
/*MISE EN PAGE DU MENU*/
.menucell{
margin: 0;
padding: 0;
float: left;
/*border: 1px solid #000000;*/
border-width: 1px 0;
text-align: center;
font-family: Arial;
font-size: 13px;
font-weight: bold;
margin-left: 20px;
}
/* POSITION DU MENU PRINCIPAL */
.menucell dl{
padding:0px;
margin-top: 8px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
float: left;
width: auto;
z-index:100;
}
.menucell dt{
display: inline;
color: white;
}
.menucell dt a{
float: left;
color: white;
font-weight: bold;
text-decoration: none;
border-right: 1px solid white;
background:none;
top: 0px;
padding-top: 4px;
padding-right: 11px;
padding-bottom: 4px;
padding-left: 11px;
}
.menucell dt a:visited{
color: white;
font-weight: bold;
}
.menucell dt a:hover, .menucell dt .current{
color: white;
font-weight: bold;
background: transparent url(css/images/fondmenu-press.png) center center repeat-x;
}
.menucell dd {
display: none;
*/ border: 1px solid gray;
position: absolute;
padding: 0px;
margin-top: 30px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
background-color:#FFFFFF;
z-index: auto;
}