Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

css3 won't validate in w3c valdidator

-moz and -webkit won't validate in w3c css validator, should I not use it? or just use the css3 attribute without the -moz or -webkit ?

like image 222
Christophe Avatar asked Jan 23 '23 02:01

Christophe


1 Answers

W3C Validation isn't everything. It's not the end of the world if your site doesn't validate. The W3C Validator was created in a time when only a select few cared about standards. It was a way to show the world that your site adhered to standards. In the end, your users probably don't care. They're there for the content. It's other developers that do, mostly. It's also a quick check to see if there are any glaring errors like tags that are not closed.

If you buy a wood-frame house, do you care what kind of softwood they used for the frame? You probably care more about what color paint will be used. However, good practices would use fir for load-bearing areas and something softer like spruce for normal areas. As long as it passed inspection ( won't come crashing down ) and it's of good build quality, you're probably happy. W3C validation is a little like that ( although I know the analogy is slightly flawed... )

Just bear in mind that the -webkit- and -moz- qualifiers are browser specific and more or less testing.

If it's sometimes crucial for your layout, then don't use them.

For example, I use -moz-border-radius and -webkit-border-radius a lot, but I always include the regular border-radius as well. The lack of rounded borders in IE doesn't matter to me as it doesn't usually break anything. It just isn't as pretty.

This follows the principles of graceful degradation and is good practice with CSS.

In the end, you have to do what's right for your audience. Web development is always about give and take... compromise. I know we all want to write everything perfectly... but with the fractured nature of the web, it's not really possible.

The good news is that it's MUCH MUCH MUCH better than it used to be.

like image 52
Armstrongest Avatar answered Jan 24 '23 16:01

Armstrongest