/*背景圖片 1. 必須加url 2. url 里面的地址不要加 引號*/
background-image: url(images/l.jpg);
}
/*默認的是平鋪圖 repeat*/
/*background-repeat: repeat;*/
/*背景圖片不平鋪*/
/*background-repeat: no-repeat;*/
/*橫向平鋪 repeat-x*/
/*background-repeat: repeat-x;*/
/*縱向平鋪*/
background-repeat: repeat-y;
/*背景位置*/
/*background-position: x坐標 y坐標;*/
/*background-position: right top; 右上角*/
/*background-position: left bottom; 左下角*/
/*background-position: center center; 水平居中 垂直居中*/
/*則兩個值前后順序無關 因為是方位名詞*/
/*background-position: center left; */
/*如果只指定了一個方位名詞,另一個值默認居中對齊*/
background-position: top;
/*以下說明 x 10像素 y 垂直居中的*/
/*background-position: 10px center;*/
background-position: center 10px;
/*這種寫法一般是我們以后 超大背景圖片的做法 背景定位*/
background-position: center top;
/*背景固定的*/
background-attachment: fixed;
height: 3000px;
/*background-color: #ccc;
background-image: url(images/sms.jpg);
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;*/
/*background: 背景顏色 背景圖片地址 背景平鋪 背景滾動 背景位置;*/
background: #ccc url(images/sms.jpg) no-repeat fixed center top;
background: rgba(0, 0, 0, .2); 背景透明