Bonjour,
voici mon code simple :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
<html>
<head><title>Document sans nom</title>
<link href="Aspect.css" rel="stylesheet" type="text/css"></head>
<body>
<input class="griser" name="voieville" type="text" value="TEST" size="25" disabled="disabled">
</body></html>
et ma CSS associée (elle ne sert pas qu'à ça je vous rassure ) :
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
24
25
26
27
28
29
body {
	font-family:"Verdana";
	font-size:12px;
}
 
INPUT {
	font-family:"Verdana";
	font-size:12px;
	background:#DDECFF;
}
 
.select {
	font-family:"Verdana";
	font-size:12px;
	color:#000000;
	background-color:#DDECFF;
}
 
.bouton input {
	background:none;
}
 
 
.griser {
	font-size:12px;
	font-family:"Verdana";
	color:#000000;	 
	background:#FECDCD;		 
}
Pourquoi mon texte n'est pas écrit en noir sous IE alors qu'il l'est sous FF ?

Merci de vos réponses
Niouts