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 5 years have passed since last update.

背景画像を読み込む方法

Posted at

背景画像を読み込む方法

publicディレクトの下にimagesフォルダを作り、ネットでダウンロードした画像をそこに置く。

cssで背景画像を読み込ませるには

background-image: url('../images/minato1.jpeg');
background-size: cover;

と指定してあげる必要があります。

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?