1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| background-size //控制背景图片大小 background-color //背景颜色(默认透明 transparent) background-image :url() //背景图片 background-repeat: repeat(平铺)no-repeat(不平铺) repeat-x(x轴平铺)repeat-y(y轴) background-position :x y; //改变图片背景位置 (可以是上下左右和居中的方位名词如top填入无顺序关系)只填一个第二个默认居中 也可以直接跟xy的px值 也可以混合使用xy有顺序 background-attachment:scroll(随内容滚动 默认)fixed(背景固定) //背景固定 background:背景颜色 背景图片地址 背景平铺 背景图片滚动 背景图片位置 background :rgba(0,0,0,0.3) //半透明背景色
background:linear-gradient(起始方向,颜色1,颜色2,...); //背景色渐变 (得加上浏览器私有前缀) -moz-:代表火狐私有前缀 -ms-:代表ie浏览器私有前缀 -webkit-: 代表safari ,谷歌私有属性 -o-:代表Opera私有属性
|