2012年6月10日 星期日

網頁固定背景CSS語法設定

語法:

body{
background-attachment: fixed;

background-repeat: no-repeat;

background-image: url(minwt.jpg);

}

解說:

1.背景固定:
   background-attachment: fixed;
  參數:fixed:固定背景 scroll:捲動背景

2.背景重覆:
  background-repeat: no-repeat;
  參數:no-repeat:不重覆 repeat-x:水平重覆 repeat-y:垂直重覆


3.圖檔路徑:
  background-image: url(minwt.jpg);