欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

css背景渐变

程序员文章站 2022-10-08 22:40:09
background: -moz-linear-gradient( top,#ccc,#000);background: -webkit-linear-gradient(top,#ccc,#000);background: -o-linear-gradient(top,#ccc, #000); ba ......


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;