Reputation: 276
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>
Upvotes: 7
Views: 5360
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