Bonsoir,

j'ai un petit problème d'affichage d'image en fonction du passage de la souris:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
CSS
 
		.right_news_projet a{
		float: right;
		width: 50px;
		padding: 8px;	
		margin: 0 0 3px 0;
		background: url(../images/projet.png) no-repeat;
	}
 
		.right_news_projet a:hover{
		float: right;
		width: 50px;
		padding: 8px;	
		margin: 0 0 3px 0;
		background: url(../images/projet_hover.png) no-repeat;;
	}
 
 
LIEN PAGE HTML
 
<div class="right_news_projet"><a href="realisations.php?projetid=1"></a></div>
Cela affiche l'image 'projet.png' mais pas le Hover ! je ne vois pas pourquoi...