2011年4月2日

CSS背景語法

background-image 背景影像圖檔網址
如果圖檔放在images資料夾中,要寫成 background-image:url('images/img_tree.png');


background-repeat 是否重覆拼接背景
no-repeat 不重覆
repeat-x 重覆x軸方向
repeat-y 重覆y軸方向

background-position 背景起點位置
right top 指的就是從左上角開始置放圖片

body
{
background-image:url('img_tree.png');
background-repeat:no-repeat;
background-position:right top;
}

沒有留言:

張貼留言