LoginSignup
0
0

More than 5 years have passed since last update.

【CSS】iPhoneでinput要素にCSSが効かない時の対処方法

Last updated at Posted at 2015-07-09

iPhoneでinput要素にCSSが効かない時

iPhoneの装飾をクリアにする為のCSS
-webkit-appearanceをnoneにしてあげることで問題解決ができる
inputのsubmitクリアにする場合は以下のCSSを追加

input[type="submit"]{
  -webkit-appearance: none;
   border-radius: 0;
}

iPhone独自の装飾が不要であれば
下記のように書けば問題ないが
全体がクリアになるので判断する事

* {
   -webkit-appearance: none;
}
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