码迷,mamicode.com
首页 > 其他好文 > 详细

背景色渐变(兼容各浏览器)

时间:2015-12-21 15:35:02      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

.content
{
width:100%;
height:600px;
background: #179aac;
background: -moz-linear-gradient(top, #179aac 0%, #19bea0 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#179aac), color-stop(100%,#19bea0));
background: -webkit-linear-gradient(top, #179aac 0%,#19bea0 100%);
background: -o-linear-gradient(top, #179aac 0%,#19bea0 100%);
background: -ms-linear-gradient(top, #179aac 0%,#19bea0 100%);
background: linear-gradient(to bottom, #179aac 0%,#19bea0 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=‘#179aac‘, endColorstr=‘#19bea0‘,GradientType=0 );
}
:root .content{filter:none;}

背景色渐变(兼容各浏览器)

标签:

原文地址:http://www.cnblogs.com/hyql/p/5063254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!