谷歌浏览器背景渐变
这里真的是业余问题 - 身体背景渐变在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否尝试过:
WebKit 已更新以匹配规范语法,因此您应该拥有它以获得最大的浏览器支持 :
Have you tried:
WebKit updated to match the spec syntax, so you should have this to get maximum browser support:
CSS3 线性渐变标签现已受到所有主流浏览器的支持。
该语法需要额外的
to
。因此,不要使用center top
、left top
等,而是使用to top
等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你试过这个吗:
应该在 Safari 和 Chrome 中工作......
Have you tried this:
Should work in Safari and Chrome ...
和你一样,我在 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