0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

iosでtextarea・input・selectタグ選択時に拡大するのを防ぐ方法

Posted at

iosでtextarea・input・selectタグなどの入力フォームを選択すると拡大してしまうことがあります。
デザインによっては拡大をさせたくない時もあると思いますので、その時の対策です。

font-sizeを16px以上にする

textarea・input・selectタグのfont-sizeを16px以上にすればiosでも拡大しなくなります。

input,textarea,select {
  font-size: 16px
}

デザイン的に小さくしたい場合はtransformも合わせて指定

input,textarea,select {
  font-size: 16px
  transform: scale(0.8);
}

デザイン的に小さくしたい場合は、transformも合わせて指定することで、font-sizeが16pxのまま小さくすることができます。
しかし、小さい状態で拡大もされなくなる点には注意が必要です。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?