首页 > Web开发 > 详细

CSS——background

时间:2017-11-02 16:37:58      阅读:205      评论:0      收藏:0      [点我收藏+]

背景经常用到以下属性:

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;

 

CSS——background

原文:http://www.cnblogs.com/wuqiuxue/p/7772858.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!