0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WEBページの背景画像を指定する

Posted at

背景画像はCSSで指定します。
CSSで背景画像を指定するにはbackground-imageプロパティを使います。
ただbackground-imageで指定された背景画像は表示範囲を埋め尽くすまで、繰り返し表示される性質があります。
そんなときはbackground-size: cover;を指定して、1枚の画像が表示範囲を埋め尽くすように画像の大きさを拡大縮小します。

style.css
.background {
 background-image: url(画像URL);
 background-size: cover;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?