Open ndarville opened 11 years ago
Previously.
It is possible that this is caused by the font-size, as its CSS differs on the iPhone from other viewports where no such issue exists. Try the two:
font-size
This article suggests applying font-size: 16px; to :focus instead to prevent cosmetic changes to the forms and textareas like so:
font-size: 16px;
:focus
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus, select:focus { font-size: 16px !important; }
Previously.
It is possible that this is caused by the
font-size
, as its CSS differs on the iPhone from other viewports where no such issue exists. Try the two:font-size
to 16pxThis article suggests applying
font-size: 16px;
to:focus
instead to prevent cosmetic changes to the forms and textareas like so:font-size
on:focus
to 16px