J'ai fait un emnu déroulant en css
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<style type="text/css">
ul#menu li ul{
display:none;
}
ul#menu a:hover ul {
display:block;
}
</style>
</head>
<body>
<ul id="menu">
<li >
<a href="#" >Enregistrement
<ul>
<li class="first">
<a href="#" ><span> Enregistrer </span></a></li>
<li><hr /></li>
<li><a href="#" ><span> Recherche</span></a></li>
</ul>
</li>
</a>
</ul>
</body>
</html>
Mais bien qu'il marche avec Firefox, il ne marche pas avec IE.
Je suis bloqué, j'aurais besoin d'un petit coup de main soit pour debogger mon code soit pour avoir un nouveau menu en css (sans javascript).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<style type="text/css">
ul#menu li ul{
display:none;
}
ul#menu a:hover ul {
display:block;
}
</style>
</head>
<body>
<ul id="menu">
<li >
<a href="#" >Enregistrement
<ul>
<li class="first">
<a href="#" ><span> Enregistrer </span></a></li>
<li><hr /></li>
<li><a href="#" ><span> Recherche</span></a></li>
</ul>
</li>
</a>
</ul>
</body>
</html>
Mais bien qu'il marche avec Firefox, il ne marche pas avec IE.
Je suis bloqué, j'aurais besoin d'un petit coup de main soit pour debogger mon code soit pour avoir un nouveau menu en css (sans javascript).