Last active
August 29, 2015 13:58
-
-
Save devgeeks/10021551 to your computer and use it in GitHub Desktop.
Fix for native overlaid inputs in android
This file contains 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
input[type="password"], input[type="text"] { | |
position:relative; | |
top: -10000px; | |
-webkit-transform: translate3d(0, 9980px, 0); // might have to tweak 9980 to suit your input | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment