Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save xto3na/3ef4871a25eb73297f780ea4071f713e to your computer and use it in GitHub Desktop.
Save xto3na/3ef4871a25eb73297f780ea4071f713e 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