Skip to content

Instantly share code, notes, and snippets.

@devgeeks
Last active August 29, 2015 13:58
Show Gist options
  • Save devgeeks/10021551 to your computer and use it in GitHub Desktop.
Save devgeeks/10021551 to your computer and use it in GitHub Desktop.
Fix for native overlaid inputs in android
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