LoginSignup
1
1

More than 5 years have passed since last update.

【iPhone6 Plus/iPhone6+】box-shadowが効かない

Posted at

デモ:【iPhone6 Plus】box-shadowが効かない - js do it

効かない

p {
    box-shadow: 1px 1px 1px blue;
}

効く

border-radiusを指定する

p {
    box-shadow: 1px 1px 1px blue;
    border-radius: 0.1px;
}

background-colorを指定(transparentはだめ)

実験したけど背景に透明画像もダメだった。

p {
    box-shadow: 1px 1px 1px blue;
    background-color: #dfd;
}

参考:iPhone6 Plusでcssのbox-shadowが効かない時の対処方法

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