css渐变色

//往左下角逐渐变色
grad1 {
height: 200px;
//浏览器兼容
//background: -webkit-linear-gradient(left top, red , blue); /* Safari 5.1 - 6.0 */
//background: -o-linear-gradient(bottom right, red, blue); /* Opera 11.1 - 12.0 */
//background: -moz-linear-gradient(bottom right, red, blue); /* Firefox 3.6 - 15 */
background: linear-gradient(to bottom left, #080808,#414141,#080808,#080808); /* 标准的语法(必须放在最后) */
}

参考:http://www.runoob.com/css3/css3-gradients.html

猜你喜欢

转载自blog.csdn.net/lcdaaaa/article/details/79997262