Bonjour,
J'ai un css comme suit
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
.col3 a:link,a:active,a:visited{
	font-size : 14px;
	color : #000000; 
	font-family :  Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color : #dfdfb9;
}
Cela marche bien sous IE7 mais j'ai un problème sous IE6 , il ne prend en compte que a:link.
Je suis obligée de faire
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
col3 a:link{
	font-size : 14px;
	color : #000000; 
	font-family :  Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color : #dfdfb9;
}
col3 a:active{
	font-size : 14px;
	color : #000000; 
	font-family :  Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color : #dfdfb9;
}
col3 a:visited{
	font-size : 14px;
	color : #000000; 
	font-family :  Verdana, Arial, Helvetica, Geneva, sans-serif;
	background-color : #dfdfb9;
}
Ce qui est vraiment lourd... il ya t-il une autre solution?
Merci d'avance