隨機變換部落格背景圖語法分享 <style>body { background-image:url('http://i278.photobucket.com/albums/kk114/alice2343_2008/Kit2-TuileFleurs1.jpg'); background-attachment: fixed; background-repeat: repeat; background-position: 100% 100%; } table { background-color: transparent; } td { background-color: transparent; }</style> 說明 : 紅字部分可以任意更改 style 樣式 background-image 背景圖 url("http://i278.photobucket.com/albums/kk114/alice2343_2008/Kit2-TuileFleurs1.jpg"); 背景圖網址 background-attachment: fixed; 背景圖固定 不隨捲軸移動 background-repeat: repeat; 背景圖重複貼 (1024X768 以上大圖 不重複貼 設為 no repeat) background-position:100% 100%; 背景圖位置 (大圖可為100% 0% ; 數字自行變更看看) table 表格; 圖表; 平面; td 表示在表格列中畫出儲存格。 transparent 透明的
|