Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ページの背景画像を設定したいのですが、CSSコードは-
background:url(images/body_bg.jpg) repeat-x top;
しかし、画像のサイズは、薄いストリップのみでグラデーションカラーのWebページほど大きくありません。では、背景全体を占めるように画像を繰り返すにはどうすればよいですか?先ほど言ったように、グラデーションなので、背景をハードコアにすることはできません色。
こちらのデモをご覧ください。
background:url(images/body_bg.jpg) repeat left top;
より詳しい情報:
http://www.w3schools.com/css/css_background.asp
これを使用して、グラデーションを終了する色にbackground: #000000 url(images/body_bg.jpg) repeat-x top; 置き換えることができます。#000000
background: #000000 url(images/body_bg.jpg) repeat-x top;
#000000