How to remove eyes from the password field?

I cannot remove the password from IE 10. I tried using

input[password]::-ms-reveal {display : none ;} 

but not working for me.

Any suggestions?

+6
source share
1 answer

This works well:

 input[type=password]::-ms-reveal, input[type=password]::-ms-clear { display: none; } 
+16
source

Source: https://habr.com/ru/post/954458/


All Articles