Ravi Majithia
Ravi Majithia

Reputation: 276

How can I remove the cross sign and password reveal sign in the IE 9, 8 & 7 modes of IE 10?

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

Upvotes: 7

Views: 5360

Answers (1)

mrmoje
mrmoje

Reputation: 3732

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>

Upvotes: 1

Related Questions