Salut a tous,
j'ai fait un petit menus sous CSS dont voici le code:
le html:
etl le CSS associé:
Le probleme est que sous IE j'ai un petit écart entre chaque <li> Savez vous d'ou ca peut venir?
Merci d'avance .
Un petit appercu pourra peut etre vous aidez:
http://manganime.0.free.fr/CVenligne/
(n'oubliez pas de regarder avec IE .
Modifié par death83 (30 Jan 2006 - 21:55)
j'ai fait un petit menus sous CSS dont voici le code:
le html:
<div style="height:800px; width:132px; float:left; margin-left:0px;padding:0; margin:0; ">
<ul id="menu2">
<li id="haut"><a href="" style="">Espace:</a></li>
<li id="etudiant"><a href="">Etudiant</a></li>
<li id="entreprise"><a href="">Entreprise</a></li>
<li id="bas"><a href=""></a></li>
</ul>
</div>
etl le CSS associé:
#menu2
{
margin:0;
padding:0;
overflow:hidden;
}
ul#menu2 li {
color:black;
padding:0; margin:0;
}
ul#menu2 li a {
display: block;
}
ul#menu2 {
list-style-type: none;
padding:0; margin:0;
}
li#haut
a {
background: url(CVenligne/7.jpg) no-repeat;
width:132px;
height:29px;
padding:0; margin:0;
}
li#haut a:hover {
background: url(CVenligne/7.jpg) no-repeat; /* effet de rollover pour le bouton accueil à renouveler avec le reste des boutons */
width:132px;
height:29px;
cursor:default;
padding:0; margin:0;
}
li#bas
a {
background: url(CVenligne/100.jpg) no-repeat;
width:132px;
height:23px;
padding:0; margin:0;
}
li#bas a:hover {
background: url(CVenligne/100.jpg) no-repeat; /* effet de rollover pour le bouton accueil à renouveler avec le reste des boutons */
width:132px;
height:23px;
cursor:default;
padding:0; margin:0;
}
li#etudiant
a {
background: url(CVenligne/81.jpg) no-repeat;
width:132px;
height:21px;
padding:0; margin:0;
}
li#etudiant a:hover {
background: url(CVenligne/82.jpg) no-repeat; /* effet de rollover pour le bouton accueil à renouveler avec le reste des boutons */
width:132px;
height:21px;
padding:0; margin:0;
}
li#entreprise
a {
background: url(CVenligne/91.jpg) no-repeat;
width:132px;
height:21px;
padding:0; margin:0;
}
li#entreprise a:hover {
background: url(CVenligne/92.jpg) no-repeat; /* effet de rollover pour le bouton accueil à renouveler avec le reste des boutons */
width:132px;
height:21px;
}
ul#menu2 a:link {
text-decoration: none;
color:#07243D;
font-weight:bold;
text-align:center;
font-size:14px;
}
ul#menu2 a:visited {
text-decoration: none;
color:#07243D;
font-weight:bold;
text-align:center;
font-size:14px;
}
ul#menu2 a:hover {
text-decoration: none;
color:#07243D;
font-weight:bold;
text-align:center;
font-size:15px;
}
ul#menu2 a:active {
text-decoration: none;
color:#07243D;
font-weight:bold;
text-align:center;
font-size:14px;
}
Le probleme est que sous IE j'ai un petit écart entre chaque <li> Savez vous d'ou ca peut venir?
Merci d'avance .
Un petit appercu pourra peut etre vous aidez:
http://manganime.0.free.fr/CVenligne/
(n'oubliez pas de regarder avec IE .
Modifié par death83 (30 Jan 2006 - 21:55)