为什么 webkit 径向渐变在 Safari 中不起作用?

发布于 2024-11-04 18:20:13 字数 164 浏览 0 评论 0原文

这在 Chrome 中有效,但在 Safari 中无效:

background: -webkit-radial-gradient(center, ellipse cover, #fdfdfd, #d3d3d3);

如何在 Safari 中修复它?

This is working in Chrome but not in Safari:

background: -webkit-radial-gradient(center, ellipse cover, #fdfdfd, #d3d3d3);

How can I fix it for Safari?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

ま昔日黯然 2024-11-11 18:20:13

它甚至在 Chrome 中无法正常工作,因为它显示的是圆形渐变,而不是椭圆形渐变。它在 Webkit nightly 中确实可以正常工作。

它在 Safari 中不起作用的原因是该语法尚未传播到 Safari 的稳定版本。最终它会的。你需要学会耐心,我年轻的学徒:)

现在,你可以使用 -webkit-gradient,但始终在其后面包含 -webkit-radial-gradient 等效项。当我们这样做时,也不要忘记其他前缀(-o--moz--ms-

It doesn't even work correctly in Chrome, as it shows a circular gradient, not an elliptical one. It does work correctly in Webkit nightlies.

The reason it doesn't work in Safari is that the syntax hasn't propagated yet to a stable version of Safari. Eventually it will. You need to learn patience my young padawan :)

For now, you may use -webkit-gradient, but always include the -webkit-radial-gradient equivalent after it. And while we're at it, don't forget the other prefixes too (-o-,-moz-,-ms-)

静若繁花 2024-11-11 18:20:13

尝试使用 Safari:

background: -webkit-gradient( radial, <point>, <radius>, <point>, <radius>[, <stop>]* ) <color>;

示例和更多说明可以在这里找到:http: //www.the-art-of-web.com/css/radial-gradients/

Try using for Safari:

background: -webkit-gradient( radial, <point>, <radius>, <point>, <radius>[, <stop>]* ) <color>;

Examples and more explanation can be found here: http://www.the-art-of-web.com/css/radial-gradients/

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