background综合属性

background属性和border一样,是一个综合属性:

background:red url(1.jpg) no-repeat 100px 100px fixed;

等价于:

background-color:red;
background-image:url(1.jpg);
background-repeat:no-repeat;
background-position:100px 100px;
background-attachment:fixed;

可以任意省略部分,比如:

background: red;
background: blue url(images/wuyifan.jpg) no-repeat 100px 100px;

猜你喜欢

转载自www.cnblogs.com/ustc-yy/p/12107163.html