谷歌浏览器背景渐变

发布于 2024-11-26 07:40:11 字数 420 浏览 2 评论 0原文

这里真的是业余问题 - 身体背景渐变在 Chrome 中不起作用,很奇怪,我已经尝试过了:

background: -webkit-gradient(linear, 0 0, 0 bottom, from(#FFF), to(#000));

而且

background: -webkit-gradient(linear, 0%, 0%, 0%, 100%, from(#fff), to(#000));

一切

background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#000));

都无济于事!适用于所有其他浏览器...

Really amateur question here - body background-gradient isn't working in chrome, very strange, I've tried:

background: -webkit-gradient(linear, 0 0, 0 bottom, from(#FFF), to(#000));

And

background: -webkit-gradient(linear, 0%, 0%, 0%, 100%, from(#fff), to(#000));

And

background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#000));

All to no avail! Works in every other browser...

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

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

发布评论

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

评论(4

北斗星光 2024-12-03 07:40:11

您是否尝试过:

background: -webkit-linear-gradient(#917c4d, #ffffff);

WebKit 已更新以匹配规范语法,因此您应该拥有它以获得最大的浏览器支持

background: -webkit-gradient(linear, center top, center bottom, from(#917c4d), to(#ffffff));
background: -webkit-linear-gradient(#917c4d, #ffffff);
background: -moz-linear-gradient(#917c4d, #ffffff);
background: -o-linear-gradient(#917c4d, #ffffff);
background: -ms-linear-gradient(#917c4d, #ffffff);
background: linear-gradient(#917c4d, #ffffff);

Have you tried:

background: -webkit-linear-gradient(#917c4d, #ffffff);

WebKit updated to match the spec syntax, so you should have this to get maximum browser support:

background: -webkit-gradient(linear, center top, center bottom, from(#917c4d), to(#ffffff));
background: -webkit-linear-gradient(#917c4d, #ffffff);
background: -moz-linear-gradient(#917c4d, #ffffff);
background: -o-linear-gradient(#917c4d, #ffffff);
background: -ms-linear-gradient(#917c4d, #ffffff);
background: linear-gradient(#917c4d, #ffffff);
澉约 2024-12-03 07:40:11

CSS3 线性渐变标签现已受到所有主流浏览器的支持。

该语法需要额外的 to。因此,不要使用 center topleft top 等,而是使用 to top

background-image: linear-gradient(to top , #094F86, #4EABDB);

CSS3 linear-gradient tag is now supported by all major browsers.

The syntax requires an additional to. Therefore instead of e.g. center top, left top etc use e.g. to top like

background-image: linear-gradient(to top , #094F86, #4EABDB);
趁微风不噪 2024-12-03 07:40:11

你试过这个吗:

<style>
.myawesomegradient{
background:-webkit-gradient(linear, left top, right top, color-stop(0%,#ffffff), color-stop(100%,#000000));
}
</style>

应该在 Safari 和 Chrome 中工作......

Have you tried this:

<style>
.myawesomegradient{
background:-webkit-gradient(linear, left top, right top, color-stop(0%,#ffffff), color-stop(100%,#000000));
}
</style>

Should work in Safari and Chrome ...

乜一 2024-12-03 07:40:11

和你一样,我在 Chrome 浏览器上遇到了问题,但唯一的解决方案是使用内联样式! style = "" 在这里写下你的代码来解决问题

Like you, I had a problem with the Chrome browser, but the only solution is to use inline styles! style = "" Write the your code here to solve the problem

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