css validator meckert
stefan(klein geschrieben)
- css
hallo leute,
warum meckert der css-validator und sagt mir ich keine hintergrundfarbe definiert, für alle möglichen tags z.b. body
kann der nich lesen??
hier das css
BODY {
background-color : #F0F8FF;
font-family : Tahoma;
font-size : 14px;
margin-bottom : 5px;
margin-left : 5px;
margin-right : 5px;
margin-top : 5px;
}
TD {
font-family : Tahoma;
font-size : 14px;
vertical-align : top;
background-color : #F0F8FF;
}
TD.nav {
font-family : Tahoma;
font-size : 12px;
vertical-align : top;
color : white;
background-color : #00A0FF;
text-align : center;
}
div.big {
font-family : Tahoma;
font-size : 15px;
vertical-align : top;
font-weight : bold;
color : blue;
background-color : #F0F8FF;
}
div.klein {
font-family : Tahoma;
font-size : 10px;
vertical-align : top;
color : blue;
background-color : #F0F8FF;
}
TD.strich {
background-color : #007F00;
}
TD.runter {
background-color : #FF7F00;
}
TD.trenn {
background-color : #FF7F00;
}
TD.big {
font-family : Tahoma;
font-size : 14px;
font-weight : bold;
background-color : #F0F8FF;
}
TD.mitte {
font-family : Tahoma;
font-size : 14px;
vertical-align : middle;
text-align : center;
background-color : #F0F8FF;
}
TD.oben {
font-family : Tahoma;
font-size : 8px;
vertical-align : middle;
background-color : #F0F8FF;
}
SPAN.oben {
font-family : Tahoma;
font-size : 10px;
background-color : #efefef;
}
SPAN.thema {
background-color : Aqua;
}
H1 {
font-family : Tahoma;
font-size : 18px;
}
A:LINK {
text-decoration : underline;
color : blue;
background-color : #F0F8FF;
}
A:VISITED {
text-decoration : underline;
color : #00AFAF;
background-color : #F0F8FF;
}
A:ACTIVE {
text-decoration : none;
color : #FFDF00;
background-color : #F0F8FF;
}
A:HOVER {
text-decoration : none;
color : #FF0000;
background-color : #F0F8FF;
}
sieht jemand den fehler
danke stefan
Moin
warum meckert der css-validator und sagt mir ich keine hintergrundfarbe definiert, für alle möglichen tags z.b. body
kann der nich lesen??
Oder du ? ;-)
Also bei mir sagt er:
Line : 2 Level : 1 You have no color with your background-color : BODY
[...]
Ich denk mal, er fände es gut, wenn du zu deiner background-Farbe auch noch eine "foreground"-Farbe definieren würdest. http://www.w3.org/TR/REC-CSS1#color-and-background-properties
Viele Grüße
Swen
auch Moin
Ich denk mal, er fände es gut, wenn du zu deiner background-Farbe auch noch eine "foreground"-Farbe definieren würdest. http://www.w3.org/TR/REC-CSS1#color-and-background-properties
ne, er will expliziet eine angabe zur schriftfarbe also color: farbe;
trotzdem danke, jetzt gehts
stefan
Moin,
Ich denk mal, er fände es gut, wenn du zu deiner background-Farbe auch noch eine "foreground"-Farbe definieren würdest.
ne, er will expliziet eine angabe zur schriftfarbe also color: farbe;
Swen meinte die CSS-Angabe color:#xxxxxx; , welche auch als "foreground"-color bezeichnet wird. Die CSS-Angabe foreground-color:#xxxxxx; gibt es AFAIK nicht.
Gruss,
Einbecker