Internet Explorer中的渐变颜色

Internet Explorer中的渐变颜色,第1张

Internet Explorer中的渐变颜色

我用于所有浏览器渐变的代码:

background: #0A284B;background: -webkit-gradient(linear, left top, left bottom, from(#0A284B), to(#135887));background: -webkit-linear-gradient(#0A284B, #135887);background: -moz-linear-gradient(top, #0A284B, #135887);background: -ms-linear-gradient(#0A284B, #135887);background: -o-linear-gradient(#0A284B, #135887);background: linear-gradient(#0A284B, #135887);filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0A284B', endColorstr='#135887');zoom: 1;

您需要指定一个高度或zoom: 1将其应用于hasLayoutIE中的元素

更新:

这是面向所有LESS用户的LESS Mixin(CSS)版本:

.gradient(@start, @end) {    background: mix(@start, @end, 50%);    filter: ~"progid:DXImageTransform.Microsoft.gradient(startColorStr="@start~", EndColorStr="@end~")";    background: -webkit-gradient(linear, left top, left bottom, from(@start), to(@end));    background: -webkit-linear-gradient(@start, @end);    background: -moz-linear-gradient(top, @start, @end);    background: -ms-linear-gradient(@start, @end);    background: -o-linear-gradient(@start, @end);    background: linear-gradient(@start, @end);    zoom: 1;}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5559640.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存