 クリックしてみてね♪固定しています |
壁紙の固定方法
<STYLE type="text/css">
<!--
BODY {
background-image : url("壁紙のURL");
background-attachment: fixed;
background-position:AorBで指定;
background-repeat: no-repeat;
background-color:#FFFFFF;
}
-->
</STYLE>
|
これを <head>〜</head> の中に入れて下さい。
AかBどちらかの方法で指定して下さい。
| A | B |
| 右上 | right top | 100% 0% |
| 右下 | right bottom | 100% 100% |
| 左上 | left top | 0% 0% |
| 左下 | left bottom | 0% 100% |
| 中央上 | top | 50% 0% |
| 中央下 | bottom | 50% 100% |
| 中央 | center | 50% 50% |
background-position:100% 100%;
または
background-position:right bottom;
このように。
|