开发者

Validating -moz-border-radius / -webkit-border-radius

开发者 https://www.devze.com 2022-12-25 01:54 出处:网络
is there any way to validate -moz-border-radius / -webkit-border-radius in the CSS validator? The client wants validation but开发者_开发百科tons in the sidebar (ugh!) and I can\'t find any way to byp

is there any way to validate -moz-border-radius / -webkit-border-radius in the CSS validator?

The client wants validation but开发者_开发百科tons in the sidebar (ugh!) and I can't find any way to bypass it. I've used @import too, no success.


-moz- and -webkit- aren't going to validate. They are vendor specific. When CSS3 becomes more 'offical', the actual border-radius should validate fine. Remember that there are several jQuery plugins that can round borders, but I highly recommend against them.


If you use PrefixFree, you can use non-prefixed properties in your stylesheet and it'll convert them to prefixed properties (if necessary) for the appropriate browsers. This means in your stylesheet, you can write, for example, border-radius: 5px; (which will validate as CSS3), but older versions of Firefox and Safari will automatically use -moz-border-radius: 5px; and -webkit-border-radius: 5px;.

0

精彩评论

暂无评论...
验证码 换一张
取 消