How to hide Microsoft Edge’s passwort reveal button (#snippet)

I read the new web.dev course on Forms today and learned a surprising fact about forms in Microsoft Edge.
Did you know that Edge provides a "password reveal" button in password fields? That’s right; password fields include…


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis

I read the new web.dev course on Forms today and learned a surprising fact about forms in Microsoft Edge.

Did you know that Edge provides a "password reveal" button in password fields? That's right; password fields include a little clickable "eye icon" to show and hide the entered password.

However, a great usability feature only available in one browser isn't great. 🤷‍♂️ If you want to provide password reveal functionality to all browsers, you still have to implement it yourself. And that means you have to get rid of Edge's little gimmick.

To hide Edge's additional password functionality, use this cryptic pseudo-element. 👇

::-ms-reveal {
  display: none
}

If you're using Edge, playaround with the pseudo-element below.

[Interactive component: visit the article to see it...]

And if you want to learn more about this functionaliy, check the Microsoft Edge Reference docs.


Reply to Stefan


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis


Print Share Comment Cite Upload Translate Updates
APA

Stefan Judis | Sciencx (2021-12-27T23:00:00+00:00) How to hide Microsoft Edge’s passwort reveal button (#snippet). Retrieved from https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/

MLA
" » How to hide Microsoft Edge’s passwort reveal button (#snippet)." Stefan Judis | Sciencx - Monday December 27, 2021, https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/
HARVARD
Stefan Judis | Sciencx Monday December 27, 2021 » How to hide Microsoft Edge’s passwort reveal button (#snippet)., viewed ,<https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/>
VANCOUVER
Stefan Judis | Sciencx - » How to hide Microsoft Edge’s passwort reveal button (#snippet). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/
CHICAGO
" » How to hide Microsoft Edge’s passwort reveal button (#snippet)." Stefan Judis | Sciencx - Accessed . https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/
IEEE
" » How to hide Microsoft Edge’s passwort reveal button (#snippet)." Stefan Judis | Sciencx [Online]. Available: https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/. [Accessed: ]
rf:citation
» How to hide Microsoft Edge’s passwort reveal button (#snippet) | Stefan Judis | Sciencx | https://www.scien.cx/2021/12/27/how-to-hide-microsoft-edges-passwort-reveal-button-snippet/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.