88
Views
3
Comments
Solved
How do I hide/remove Edge's password reveal icon?
Application Type
Traditional Web

I need to remove/hide the reveal password icon. It only seems to display in Edge. Does anyone know how I can do this?

2020-06-08 06-48-23
Divyanshu Pathak
Solution

Hi Stephen,

Use this css

input::-ms-reveal,

      input::-ms-clear {

        display: none;

      }

Credits - https://stackoverflow.com/questions/61449079/how-to-hide-the-eye-from-a-password-input-in-ms-edge-and-ie

2020-06-08 06-48-23
Divyanshu Pathak
Solution

Hi Stephen,

Use this css

input::-ms-reveal,

      input::-ms-clear {

        display: none;

      }

Credits - https://stackoverflow.com/questions/61449079/how-to-hide-the-eye-from-a-password-input-in-ms-edge-and-ie

2023-10-21 19-42-11
Tousif Khan
Champion
Solution
UserImage.jpg
stephen davies

Thanks for your help. 

Adding the below to my css worked .

input::-ms-reveal,

      input::-ms-clear {

        display: none;

      }

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.