Bonjour
Dans mon projet je dois faire des css v1.(pourquoi? parceque c'est dans les spécification )

Quand je valide ma css sur le site du W3C, il me dit qu'elle est compatible version 2.

Existe il un validator en css v1?

Je vous donne ma css pour info. Si vous voyez qqc qui cloche pour la vesion1, pouvez vous de me le dire.

Merci d'avance.

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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
 
body {
    color: #1e64aa;
    background-color:  #e1e5f3;
}
 
#header {
  font-weight: bold;
   text-align: center;
}
 
#div-flag{
text-align: center;
}
 
#flag{
    width: 100px;
    height: 80px;
}
 
#ref-value{
   color: #000;
  background:#fff;
}
 
.title{
  color: #ffffff;
  font-weight: bold;
  background-color:#1e64aa;
}
.center{
   text-align: center;
}
.value{
    color: #000;
  background:#d3d3d3;
 
}
.envelope{
    color: #1e64aa;
  background:#bec8e6;
}