0
0

More than 3 years have passed since last update.

iOS実機でborder-radiusが効かない場合の対応

Posted at

組み方によってはiOS実機でborder-radiusが効かない場合があるようなので対応メモ。

border-radiusが効かないケース

.hoge {
  border-radius: 5%;
}

.hoge {
  border-radius: 5px;
}

対応策

  • 指定単位に%は使わない。
  • z-indexを付与する。
.hoge {
  z-index: 1;
  border-radius: 5px;
}

より適切な方法があれば知りたい。

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