Ciao a tutti 
nel validare sul sito w3c un file css, mi sono stati restituiti diversi messaggi di warning riferiti al background color, sia del body che di tutti i div. Nonostante una serie di tentativi non sono riuscito a risolvere il problema, e il validatore non mi fornisce informazioni più dettagliate sulla questione.
Vi riporto di seguito il risultato completo della validazione del codice. Voi avete idea di cosa sia a generare l'avvertenza?
Come sempre vi ringrazio per il vostro aiuto
§Tristan§
codice:
Warnings
URI : file://localhost/layout.css
* Line : 5 (Level : 1) You have no background-color with your color : body
* Line : 11 (Level : 1) You have no background-color with your color : a
* Line : 15 (Level : 1) You have no background-color with your color : a:hover
* Line : 28 (Level : 1) You have no color with your background-color : #testata
* Line : 43 (Level : 1) You have no color with your background-color : #corpo
* Line : 49 (Level : 1) You have no color with your background-color : #colonna_centrale
* Line : 55 (Level : 1) You have no color with your background-color : #colonna_sinistra
* Line : 62 (Level : 1) You have no color with your background-color : #colonna_destra
* Line : 68 (Level : 1) You have no color with your background-color : #footer
Valid CSS information
* body {
o text-align : center;
o margin : 0;
o background-image : url(sbody.gif);
o color : #ffffff;
o font : 70% verdana, helvetica, sans-serif;
}
* a {
o color : #ffffcc;
o text-decoration : none;
}
* a:hover {
o color : green;
o text-decoration : underline;
}
* #principale {
o width : 750px;
o margin : 0 auto;
o border : 1px solid;
o min-height : 400px;
}
* #testata {
o width : 750px;
o height : 250px;
o background-color : #ff0000;
o background-image : url(titolo.jpg);
o background-repeat : no-repeat;
o border-bottom : 1px solid;
}
* #menu {
o width : 750px;
o height : 30px;
o background-image : url(sfmenu1.gif);
o border-bottom : 1px solid;
}
* #corpo {
o width : 750px;
o background-color : #850303;
}
* #colonna_centrale {
o text-align : justify;
o padding : 5px;
o background-color : #850303;
}
* #colonna_sinistra {
o float : left;
o width : 150px;
o background-color : #850303;
}
* #colonna_destra {
o float : right;
o width : 150px;
o background-color : #850303;
}
* #footer {
o width : 750px;
o height : 50px;
o background-color : #850303;
o background-image : url(or.jpg);
o border-top : 1px solid;
}
* #colonna_centrale p {
o margin-left : 5px;
}