LoginSignup
8
8

More than 5 years have passed since last update.

cssで背景画像の表示位置を指定する場合の注意

Posted at

cssで背景画像の表示位置を指定する場合、
background-positionの指定はbackgroundの指定よりも後に書かないと反映されない。

#hoge {
    background: url(hogehoge/hoge.png) no-repeat;
    background-position: center center;
}
8
8
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
8