1. 程式人生 > >html中的背景

html中的背景

背景顏色  background-color:red;

背景圖片  background-image:url(img/bg.jpg);

背景圖是否重複  background-repeat:no-repeat;      /repeat; /repeat-x;

背景圖的位置  background-position:center 0px;     /第二個值不寫預設居中   /left 、right、top、bottom 、center

背景圖是否滾動  background-attachment:fixed;

複合樣式--不分順序(顏色 圖片 是否重複 位置 是否滾動)例如:

background:red url(img/bg/jpg) no-repeat center top scroll;