Reputation: 3097
I trying to validate my CSS in Level 3 on jigsaw.w3.org. But I get many error messages for properties which started with -moz or -webkit or -o and ...
What should I do ?
Upvotes: 1
Views: 2161
Reputation: 157334
It shows you invalid because those properties are proprietary and are not accepted by w3.org
And hence it throws you error messages for those properties, so if you want to validate it completely, you need to use properties which are accepted by w3.org
Or else you can also select an alternate option here
Upvotes: 5
Reputation: 201588
Click on “More Options” in the user interface at http://jigsaw.w3.org/css-validator/ and the select “Warnings” in the “Vendor Extensions” dropdown. The extensions will still be errors as far as CSS specs are concerned, but messages about them will be shown as warnings, and you can focus on “real” errors better.
Upvotes: 1
Reputation: 324640
Ignore them. Either that or don't use vendor extensions and wait for everyone to catch up with the standards.
Upvotes: 3