css3背景渐变怎么使ie兼容
1个回答
展开全部
兼容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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询