Salut,
J'ai un petit problèmes tout mes boutons s'affichent sauf un seul qui ne veux pas s'afficher !
Mon CSS:
- navigation ul li{
list-style:none;
float:left
}
<!-- Début Bouton Menu -->
.accueil{
background:url(images/accueil.png) no-repeat top center;
width:171px;
height:40px;
display:block;
}
.accueil:hover{
background:url(images/accueil.png) no-repeat bottom center;
width:171px;
height:40px;
}
.news{
background:url(images/news.png) no-repeat top center;
width:122px;
height:40px;
display:block;
}
.news:hover{
background:url(images/news.png) no-repeat bottom center;
width:122px;
height:40px;
}
.tests{
background:url(images/tests.png) no-repeat top center;
width:113px;
height:40px;
display:block;
}
.tests:hover{
background:url(images/tests.png) no-repeat bottom center;
width:113px;
height:40px;
}
MON HTML:
<body><center>
<div id="conteneur">
<div id="header"></div>
<div id="navigation">
<ul>
<li><a href="*" class="accueil"></a></li>
<li><a href="*" class="news"></a></li>
<li><a href="*" class="tests"></a></li>
<li><a href="*" class="videos"></a></li>
<li><a href="*" class="contact"></a></li>
<li><a href="*" class="nous"></a></li>
</ul>
</div>
</div>
</center>
</body>
Voilà seulement mon bouton accueil qui ne s'affiche pas aidez moi svp !
