css3背景渐变怎么使ie兼容

 我来答
Kannboy
2017-10-23 · TA获得超过1497个赞
知道小有建树答主
回答量:2162
采纳率:14%
帮助的人:638万
展开全部

兼容IE6,IE7,IE8的元素背景渐变

<!DOCTYPE html>  
<html>  
<head>  
<meta charset=utf-8 />  
<title>CSS 实现元素背景渐变</title>  
</head>  
<body>  
<style type="text/css">   
.demo {   
width:100%;   
height:200px;   
background: -webkit-gradient(linear, 0 0, 0 100%, from(#80c1e7), to(#213c7c));   
background: -webkit-linear-gradient(left, #80c1e7, #213c7c);   
background: -moz-linear-gradient(left, #80c1e7, #213c7c);   
background: -o-linear-gradient(left, #80c1e7, #213c7c);   
background: -ms-linear-gradient(left, #80c1e7, #213c7c);   
background: linear-gradient(left, #80c1e7, #213c7c);   
filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #80c1e7, endColorstr = #213c7c);   
}   
</style>  
<div class="demo"></div>  
</body>  
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式