I went to W3C.org to check some pages i made for validation, when i tried validating the CSS file i made it gave me this. I dont think its an error because it printed all of my code back and said valid CSS, but whats this mean?
To work as intended, your CSS style sheet needs a correct document parse tree. This means you should use valid HTML.
Is your CSS online, or on your local machine? I get the same problem when I try to validate from my machine. Just upload it to your website, then try to validate it.
It's not an error, it's more of a warning. It's just telling that although your CSS is fine, you could run into some problems if the HTML Documnt it's attached to isn't valid.
__________________ Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"
from everything i gather my HTML is fine. The only errors i get when validating that is from the javascript at the begining and the onblur in my text fields. Should the validator find valid javascript or is this a normal thing?
If its a CSS validator, it will interperate JS as invalid CSS.
Remoe all text apart from CSS stuff, place it in a seperate .CSS file and validate. If it passes you know its fine and can place it back in your file with the JS etc.