LoginSignup
8
7

More than 5 years have passed since last update.

background-size: coverの勘所

Last updated at Posted at 2014-03-22

background-size: coverを使った背景画像を拡大縮小して背景を覆う方法は、スクロールが生じるページだと下部に背景色の帯が生じることがある。

修正方法

bodyに指定するとこれが起きなくなる。

filename
body {
    width: 100%;
    height: 100%;
    background: url(背景画像のパス) left top no-repeat fixed;
    background-size: cover;
}

【要注意】対応ブラウザはIE9以上

IE8以下に対応するときは、下記のような方法がある。

  • css3pieを使ってハック
  • jQueryプラグインのjquery.backgroundSize.jsを使う
  • 背景画像をimgタグに変換して、同じ位置に配置する方法(不具合多いらしい)
8
7
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
8
7