How to clear the eye icon of the cross and password input boxes in the IE10 + input X text box, ie10input
In IE 10, after you input the input content of type = "text", a cross (X) is automatically generated, allowing you to clear the entered text.
ForType = "password" input
A small eye icon is displayed on the right side. You can click the icon to display the entered content.
Good is good, but sometimes it will be superfluous, such as when JavaScript has been used to control this function.
You only need to use the following CSS code to easily hide the text deletion button and password display button of IE browser.
::- Ms-clear, ::- ms-reveal {display: none ;}
Here:-ms-clear is the text clearing button, that is, the right side of the input cross:-ms-reveal is the password viewing button, that is, the small eyes on the right side of the password box.
Of course, you can also clear one of them separately. This is your freedom.
The above section shows you how to clear the eye icons of the forks and password input boxes in the IE10 + input X text box. I hope this will help you. If you have any questions, please leave a message, the editor will reply to you in a timely manner. Thank you very much for your support for the help House website!