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
  • 50,943
  • 13
  • 104
  • 142
Ravi Majithia
  • 276
  • 4
  • 11

1 Answers1

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,714
  • 3
  • 20
  • 18