2025/01/29 08:32 |
[PR] |
2007/06/25 15:53 |
CSS 背景位置設定 |
做個MEMO
面板試驗心得:Z軸在新版的瀏覽器裡面已經被淘汰的模樣,有興趣的人可以到忍者BLOG的分站來觀察(恥笑), 而TABLE則是相對的地位提高, IE7的構成相對之前貼近了W3C的規範,這是一件好事情,不過對於跟不上時代的MIS工程師所作的IE6專屬介面可能又會造成一個很大的困擾吧?
追記: CSS BUG WIKI
背景固定
背景固定
<!--在<BODY>之內加入下列語法-->
bgproperties="fixed"
左上固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
background-attachment: fixed;
background-position:0% 0%;
background-repeat: no-repeat;}
-->
</STYLE>
左下固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
background-attachment: fixed;
background-position:0% 100%;
background-repeat: no-repeat;}
-->
</STYLE>
右上固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
background-attachment: fixed;
background-position:100% 0%;
background-repeat: no-repeat;}
-->
</STYLE>
右下固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
background-attachment: fixed;
background-position:100% 100%;
background-repeat: no-repeat;}
-->
</STYLE>
中央固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
background-attachment: fixed;
background-position:50% 50%;
background-repeat: no-repeat;}
-->
</STYLE>
上方固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
BACKGROUND-ATTACHMENT:fixed;
BACKGROUND-REPEAT:repeat-x;
BACKGROUND-POSITION:fixed;}
-->
</STYLE>
下方固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
BACKGROUND-ATTACHMENT:fixed;
BACKGROUND-REPEAT:repeat-x;
BACKGROUND-POSITION:bottom;}
-->
</STYLE>
右側固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
BACKGROUND-ATTACHMENT:fixed;
BACKGROUND-REPEAT:repeat-y;
BACKGROUND-POSITION:right;}
-->
</STYLE>
左側固定
<!--在<head>與</head>之間加入下列語法-->
<STYLE type="text/css">
<!--
BODY {
background-image : url("圖檔名稱.jpg");
BACKGROUND-ATTACHMENT:fixed;
BACKGROUND-REPEAT:repeat-y;
BACKGROUND-POSITION:fixed;}
-->
</STYLE>
- トラックバックURLはこちら