MajAfy
MajAfy

Reputation: 3097

W3 Css validator errors on -moz and -webkit

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

Answers (3)

Mr. Alien
Mr. Alien

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

W3c Validator More Options

Upvotes: 5

Jukka K. Korpela
Jukka K. Korpela

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

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324640

Ignore them. Either that or don't use vendor extensions and wait for everyone to catch up with the standards.

Upvotes: 3

Related Questions