The error from the W3 CSS Validator is:
Line: 21 Context : body
Invalid number : font Parse Error - font, td, a, body, input, textarea, table{ color: #FFFFFF
What's wrong with the CSS that's causing that error message?
Line: 21 Context : body
Invalid number : font Parse Error - font, td, a, body, input, textarea, table{ color: #FFFFFF
Code:
/*Background Stuff*/
table, td {
background-color:transparent;
border:none;
border-width:0;
}
#shout {
background-image: url(images/shout.jpg);
background-repeat: no-repeat;
background-position: top left;
}
body{
background-image:url("");
background-attachment:scroll;
background-repeat:repeat;
/*Text Attributes*/
font, td, a, body, input, textarea, table{
color: #FFFFFF;
font-size: 10pt;
font-weight: bold;
font-family:verdana;
}
.blogtitle {
font-family: verdana;
font-size: 12pt;
font-weight: bold;
color: #99ccff;
}
body, td, li, p, div, textarea, li, h1, h2, p, br {
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #cd9967;
}
/*Link Attributes*/
a:link, a.man:link, a.navbar:link, a.text:link {
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #cd9967;
}
a:hover, a.man:hover, a.navbar:hover, a.text:hover{
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #99ccff;
}
a:visited, a.man:visited, a.navbar:visited, a.text:visited {
font-family: verdana;
font-size: 10pt;
font-weight: bold;
color: #cd9967;
text-decoration:none;
}
What's wrong with the CSS that's causing that error message?