验证 -moz-border-radius / -webkit-border-radius

发布于 2024-08-26 22:41:45 字数 131 浏览 10 评论 0原文

有什么方法可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦在深巷 2024-09-02 22:41:45

-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.

屋檐 2024-09-02 22:41:45

如果您使用 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;.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文