/* prevent iphone from zooming in when filling out a form, like login or application */
@media screen and (-webkit-min-device-pixel-ratio:0) {
select,
textarea,
input,
input:focus,
input:hover {
font-size: 16px !important;
}
}
Frontend Software Engineer
/* prevent iphone from zooming in when filling out a form, like login or application */
@media screen and (-webkit-min-device-pixel-ratio:0) {
select,
textarea,
input,
input:focus,
input:hover {
font-size: 16px !important;
}
}
Unfortunately it does not work on iOS 10… BTW thank you!
PS. It works only with 16px value. Nothing else 🙁
It should work with 16px or larger. iOS, by default, will zoom on inputs when the font size is < 16px to maintain legibility.