5568 sujets

Sémantique web et HTML

Salut a tous,

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 Smiley cligne .

Un petit appercu pourra peut etre vous aidez:

http://manganime.0.free.fr/CVenligne/

(n'oubliez pas de regarder avec IE Smiley cligne .
Modifié par death83 (30 Jan 2006 - 21:55)
Peut-être le line-height à spécifier pour IE, car cela m'ai déjà arrivé en ayant un font-size plus grand que la hauteur du conteneur.

Ou peut-être, mais sans conviction, de mettre le background-position.

Ton image fait bien la taille de ta balise <a> ?
J'ai vérifier toutes les images sont a la bonne taille. J'ai aussi essayé avec background-position et line height mais en vain...
J'ai un peu regardé ta page, et je viens d'essayer en mettant le line-height, et ça fonctionne.

ul#menu2 a:link {
text-decoration: none;
color:#07243D;
font-weight:bold;
text-align:center;
font-size:14px;
line-height: 21px;
}

Par contre ne me demande pas pourquoi, seul Bill le sait.

Smiley smile