0
0

More than 3 years have passed since last update.

iosのinputやselectタグなどで画面が拡大されるのを防ぐ

Last updated at Posted at 2020-10-05

課題

iosで input,select,textareaなどの要素をクリックすると下の画像のように拡大表示されてしまう
IMG_3112.jpg

解決方法

それぞれのタグに下記のcssを追加する

input, select, textarea {
 font-size: initial !important;
}

結果

IMG_3113.jpg

iosではフォントサイズが16px以下のinputやselectタグをクリックすると拡大されてしまう仕様があるため、こちらでフォントサイズを初期化するよう明示してあげます

お疲れ様でした!

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