Created
May 26, 2013 17:40
-
-
Save vedranjaic/5653472 to your computer and use it in GitHub Desktop.
css: iPhone - Disable auto-zoom on input fields
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* disable auto-zoom on iphone input field focus | |
* http://www.456bereastreet.com/archive/201212/ios_webkit_browsers_and_auto-zooming_form_controls/ | |
*/ | |
input[type='text']:focus, | |
input[type='number']:focus, | |
textarea:focus { | |
font-size: 16px; | |
} | |
/* disable auto-zoom on iphone input field focus */ | |
@media screen and (-webkit-min-device-pixel-ratio:0) { | |
select:focus, | |
textarea:focus, | |
input:focus { | |
font-size: 16px; | |
} | |
} |
Doesn't help :(
Hey Max
You need to set font-size of your input elements to 16px or above directly.
REF: https://stackoverflow.com/questions/5111964/disable-auto-zoom-field-zoom-on-input-tags-on-my-mobile-site-without-disabling#answer-18949718
Doesn't help :(
Please add "!important" then it will be works for you to. If doesn't work then please let me your browser version as well.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! This just solved my big headache!!! Thumbs up to you!