验证 -moz-border-radius / -webkit-border-radius
有什么方法可以在 CSS 验证器中验证 -moz-border-radius / -webkit-border-radius 吗?
客户希望侧边栏中有验证按钮(呃!),但我找不到任何方法来绕过它。我也用过@import,但没有成功。
is there any way to validate -moz-border-radius / -webkit-border-radius in the CSS validator?
The client wants validation buttons in the sidebar (ugh!) and I can't find any way to bypass it. I've used @import too, no success.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
-moz- 和 -webkit- 不会验证。它们是特定于供应商的。当CSS3变得更加“官方”时,实际的边框半径应该可以很好地验证。请记住,有几个 jQuery 插件可以圆润边框,但我强烈建议不要使用它们。
-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.
如果您使用 PrefixFree,您可以在样式表中使用非前缀属性,它会将它们转换为适当浏览器的前缀属性(如果需要)。这意味着在样式表中,您可以编写
border-radius: 5px;
(这将验证为 CSS3),但旧版本的 Firefox 和 Safari 将自动使用-moz- border-radius: 5px;
和-webkit-border-radius: 5px;
。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;
.