IE10 Reveal Password Issue

Removing clear and reveal password icons from IE10  

The following CSS  worked:

input::-ms-clear, input::-ms-reveal {
    display: none;
 }

::-ms-reveal {
    display: none;

}

Here ::-ms-clear and ::-ms-reveal for extra information.

Note: You are not running in compatibility mode

Comments