- ベストアンサー
背景固定タグ
HP作り初心者です。 http://m-space.jp/でHPを作成しています。 背景を固定したくていろいろ調べたんですが、 うまくいきません。 ある、素材サイトで <STYLE type="text/css"> <!-- BODY { background-image : url("壁紙のURL"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat ; } --> </STYLE> を<head></head>の間にはさんでくださいとかいてあったんですがよくわかりません・・。 説明不足ですみません。 初心者なんで、詳しく教えていただきたいです。
- みんなの回答 (3)
- 専門家の回答
質問者が選んだベストアンサー
#1さんのおっしゃるように<head>~</head> の間に <STYLE type="text/css"> <!-- BODY { background-image : url("壁紙のURL"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat ; } --> </STYLE> のタグをいれ、("壁紙のURL") のところを自分の設置した壁紙の画像URLを入れればOKなんですが。 『壁紙のURL』のところは変更されましたか? 例えばHTMLファイルと同じフォルダにimgフォルダがあり、そのにあるkabe.gifという画像を設置したいのであれば <STYLE type="text/css"> <!-- BODY { background-image : url("img/kabe.gif"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat ; } --> </STYLE> とすればOKだと思いますが。
その他の回答 (2)
- sonokong
- ベストアンサー率23% (3/13)
私もHPを作ってて同じ症状になった事があるんですが、 <!-- BODY { background-image : url("壁紙のURL"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat ;}--> を入れた後さらに <body background="壁紙のURL">を入れて見ると できないでしょうか? ただコレが正しいタグかどうかは自信が無いのですが(^^;)
- 3o-clock
- ベストアンサー率33% (233/689)
どうやってうまくいかなかったのかを 書くのが、こういうところで役立つ為に必要なのです。 htmlの基本はこう <HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <STYLE type="text/css"> <!-- BODY { background-image : url("壁紙のURL"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat ; } --> </STYLE> <TITLE></TITLE> </HEAD> <BODY> </BODY> </HTML> <HEAD> この間にsccを書く </HEAD> 壁紙のURLは自分がアップロードした場所をしていする。
お礼
<HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <STYLE type="text/css"> <!-- BODY { background-image : url("壁紙のURL"); background-attachment: fixed; background-position: 100% 100%; background-repeat: no-repeat ; } --> </STYLE> <TITLE></TITLE> </HEAD> これをコピーして貼り付けて壁紙のURLをいれても ページが白いまんまなんです。 どうすればいいですか?