Bonjour à tous,
J'ai creer plusieurs list <ul> le problème c'est que sous mozzila mes <li> se retrouve entassés lesuns sur les autres...?!! voici mon code si quelqu'un pourrais m'éclairer SVP....
J'ai creer plusieurs list <ul> le problème c'est que sous mozzila mes <li> se retrouve entassés lesuns sur les autres...?!! voici mon code si quelqu'un pourrais m'éclairer SVP....
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/xhtml1-strict.dtd">
<html lang="fr">
<head>
<title>Construction de menus simples en XHTML/CSS: menu vertical</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
#item {
width: 149px ;
margin: 2px 0px 0px 0px;
background-color: #99ccff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:10px;
list-style-type: none;
height: 20px;
padding: 0px;
margin:2px;
}
#subitem{
background: White;
}
#item li{
padding: 0px 0px 0px 2px;
line-height:20px;
margin: 1px 0px 1px 0px;
}
#item a {
color: #000000;
text-decoration: none;
display: block;
height:20px;
}
#item ul li a:hover {
color: #000000;
font-weight:bold;
text-decoration: none;
}
#item ul li a:active {
color:#000000;
font-weight: bold;
text-decoration: none;
}
#item a:hover, {
color:#000000;
font-weight:bold;
text-decoration: none;
}
#item a:active {
color:#000000;
font-weight: bold;
text-decoration: none;
}
--></style>
</head>
<body bgcolor="#dcf1fa">
<h1>Menu vertical</h1>
<ul id="item">
<li><a href="#">Gerer emplois du temps</a></li>
</ul>
<ul id="item">
<li id="subitem"><a href="#">Visualiser les taches </a></li>
<li id="subitem"><a href="#">Saisir une tache </a></li>
<li id="subitem"><a href="#">Saisir une absence </a></li>
</ul>
<ul id="item">
<li><a href="#">Préférences</a></li>
</ul>
<ul id="item">
<li id="subitem"><a href="#">Préférences générale</a></li>
<li id="subitem"><a href="#">Activités préférées</a></li>
</ul>
<ul id="item">
<li><a href="#">Quitter</a></li>
</ul>
</body>
</html>