background属性在页面布局的时候经常运用,简单的介绍一下
-
background-image 背景图片
- background-image:url(images/图片名称.jpg);
- 使用这个属性图片是 平铺的
-
background-repeat属性
- 设置背景图片是否重复,及重复方式
- background-repeat:no-repeat; 不重复
- background-repeat:repeat-x; 横向重复
- background-repeat:repeat-y; 纵向重复
-
background-position属性 背景定位
- 定位的属性可以是负数
- background-position: -20px -30px;
- 其描述词也可以是 left、 center、right、top 、center、bottom
- background-position: right bottom;
-
background-attachment 背景是否固定
- background-attachment:fixed; 背景就会被固定住,不会被滚动条滚走。一般是描述的大背景图片
网友评论