7

I tried following solution to remove "cross" & "password reveal" sign, but it works only in IE 10 mode. I want to remove "Cross" & "password revel" sign from every version mode (9, 8 & 7) of IE 10.

<style>
    ::-ms-clear{display: none;}
    ::-ms-reveal{display: none;}
</style>

I am sharing screenshot of demo form. Please suggest solution.

Below screenshot was taken from IE7

Charles
  • 48,924
  • 13
  • 96
  • 136
Ravi Majithia
  • 276
  • 3
  • 11

2 Answers2

1

Try using more specific CSS selectors

<style>
    input[type=text]::-ms-clear{display: none;}
    input[type=password]::-ms-reveal{display: none;}
    .specific_input_class::-ms-clear{display: none;}
    #specific_input_element::-ms-clear{display: none;}
</style>
mrmoje
  • 3,626
  • 2
  • 18
  • 18
-1

you can try this it is working fine

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

http://www.teknosys.in

sita ram
  • 1
  • 1