優質推薦
心兒朵朵開
 

個人檔案

ID:sunny666
暱稱sunny美
地區臺北縣

極佳評價
嚴選推薦
站長相關網站
搜尋此頻道內容
搜尋:
人氣指數
當日人次:
累積人次:
誰推薦我
誰來我家
網誌連結縮圖
RSS 訂閱
RSS2
ATOM
贊助商
其它資訊
本部落所刊登之內容,皆由作者個人所提供,不代表 yam天空部落 本身立場。
CC授權
著作權說明文字
POWERED BY
POWERED BY
會員登入免費註冊
    推薦這個部落格: 117
目前分類: 圖片語法    檢視方式: 列表 摘要
May 10, 2007

網頁背景圖置中語法

<style type=text/css>
<!--
body{
background-image:url(圖片網址);
background-position:50% 50%;
background-attachment:fixed;
background-repeat:no-repeat;}
-->
</style>

語法說明:

把以上語法放在網頁的[head]與[/head]之間

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">


<title>網頁背景圖置中語法</title>


<style type=text/css>
<!--
body{
background-image:url(
圖片網址);
background-position:50% 50%;
background-attachment:fixed;
background-repeat:no-repeat;}
-->
</style>


</head>

<body>

</body>

</html>