css背景渐变


background: -moz-linear-gradient( top,#ccc,#000);
background: -webkit-linear-gradient(top,#ccc,#000);
background: -o-linear-gradient(top,#ccc, #000);

background: linear-gradient(top,#ccc, #000);


1,起点位置top 是从上到下,left是从左到右,left top是左上到右下
2,开始颜色,
3,结束颜色


背景图片和背景颜色同时添加: background:url(../images/biao.png) right center no-repeat #fd3101;

原文地址:https://www.cnblogs.com/zjz666/p/11101170.html