LoginSignup
1
1

More than 5 years have passed since last update.

Firefoxで background のショートハンドが効かない

Posted at

現象

backgroundのショートハンドがFirefoxで効かない
image.png

原因

position指定(center center)とsize指定(contain)の間にrepeat指定があったため

解決法

その他の指定 position指定 / size指定 その他の指定 の順序に書き換える


/* 誤った記述方法 */
.test {
  background: url("../img/xxx.jpg") center center repeat-x / contain;
}

/* 正しい記述方法 */
.test {
  background: url("../img/xxx.jpg") center center / contain repeat-x;
}

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