background樣式
background-image: url("a.jpg");
/默認狀態(tài)下是平鋪的/
background-repeat: no-repeat;
/背景不平鋪/
background-color: red;
/背景圖片比背景顏色層級高/
background-repeat: repeat-x;
/背景水平平鋪/
background-repeat: repeat-y;
/背景垂直平鋪/
background-position: 10px 10px;
/背景定位/
第一個參數(shù)水平肿嘲,第二個參數(shù)垂直
left、center拇涤、right top券躁、center、bottom
background-attachment: fixed;
/背景固定/
background-attachment: scroll;
/默認樣式滾動/
合寫
background: red url("a.jpg") no-repeat center center;