1. 程式人生 > >CSS背景例項

CSS背景例項

body{
background-image: url(  ' ' );
background-repeat: repeat-x   repeat-y   no-repeat;

background-position: 100px  100px;

/*x: left  center  right*/
/*y: top  center bottom*/

height: 1500px; /*高度, 長了可以滾動*/

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


/*也可以放在一起寫*/
background:  color:red  url: ( ' ' )   no-repeat   fixed   100px 100px
  }