LoginSignup
5
5

More than 5 years have passed since last update.

background-imageを全画面表示!!

Last updated at Posted at 2015-07-27

cssで background{ }で画像を全画面表示できなかったので調べた

html { 
  background: url(画像のパス) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

*background-imageはいらない
*画質があれだと あんまりキレイに表示できないので

5
5
1

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
5
5