渐变效果IE

发布于 2024-11-28 00:07:41 字数 232 浏览 1 评论 0原文

我使用以下 CSS 为背景提供渐变效果,但在 IE 中它不起作用。我怎样才能让它在 IE8 中工作?

background: -moz-linear-gradient(bottom, #000000, #829a90);
background: -webkit-gradient(linear, left bottom, left top, from(#000000),to(#829a90) );

I'm using following CSS to give gradient effect to the backGround but in IE it doesn't work. how can i make it work in IE8?

background: -moz-linear-gradient(bottom, #000000, #829a90);
background: -webkit-gradient(linear, left bottom, left top, from(#000000),to(#829a90) );

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

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

发布评论

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

评论(1

自由如风 2024-12-05 00:07:41

在 IE8 上测试及其工作:

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', 
                                  endColorstr='#829a90');

在 IE 中提供渐变效果也有一些限制,因为它不支持颜色停止和径向渐变。另外,不能保证所有浏览器都支持渐变,这就是为什么你不应该依赖渐变。

Tested on IE8 and its working:

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', 
                                  endColorstr='#829a90');

Also there are some limitations in giving gradient effect in IE because it doesn't supports color-stop and radial gradient. Also it's not guaranteed that all the browsers will support gradients thats why you shouldn't rely on gradient.

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