Skip to content

Instantly share code, notes, and snippets.

  • Save sega21rus7/5b944c35f51d6a0640d78b0e940793a8 to your computer and use it in GitHub Desktop.
Save sega21rus7/5b944c35f51d6a0640d78b0e940793a8 to your computer and use it in GitHub Desktop.
Ie и Edge убрать значки крестика и глаза с полей ввода
/* don't show the x for text inputs */
::-ms-clear {
width : 0;
height: 0;
}
/* don't show the eye for password inputs */
::-ms-reveal {
width : 0;
height: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment