CSS——background

背景经常用到以下属性:

background-color: aliceblue;
background-image: url('2017102601.png');
background-position: center bottom;
/*background-attachment: scroll;*/
background-attachment:fixed;
background-repeat: no-repeat;

特别注意:

1、background-position如果只写一个值,那么第二值默认是center

2、background-attachment的值是scroll的时,它是相对盒子进行定位的。如果是fixed的话,它是相对于浏览器进行定位。

属性的连写:

background: red url('2017102601.png') no-repeat bottom center scroll;
原文地址:https://www.cnblogs.com/wuqiuxue/p/7772858.html