- 1)背景圖片
**background-image: **url(1.jpg)
1,div{
background-image: url(1.jpg);
height: 500px;
}
2,<div></div>
- 2)設置背景平鋪
background-repeat: no-repeat;
repeat 默認值,重復
no-repeat 不平鋪,一張圖片
repeat-x 橫向平鋪
repeat-y 縱向平鋪 - 3)設置背景位置
background-position: right bottom; 右下腳
1,left|right|top|bottom|center
2,還可以設置數(shù)字
background-position:10px 30px;
水平方向10px和垂直方向30px
只寫10px,垂直方向是水平居中 - 4)設置背景是否固定
background-attachment: fixed;
scroll 默認值 滾動
fixed 背景固定 - 5)背景屬性連寫
沒有先后順序,沒有數(shù)量限制
background: red url("1.jpg") no-repeat 30px 40px;