HTML5: Remove the X button and small eyes of the input box and password box in IE10

Source: Internet
Author: User

In the IE10 and later versions of IE, when entered in the Input box and password box, the X button and small eyes will appear automatically, as shown in the following:



It is distressing that this effect is only IE, other browsers do not have this function. In order to unify, we need to remove this function, the practice is very simple, directly in the CSS to add the following statement:

/* Remove the x tag of the IE input box */input[type=text]::-ms-clear {display:none;} /* Remove the small eye tag of the IE input box */input[type=password]::-ms-reveal {display:none;}

If you want to remove an input box separately, you can change the input[type=text] to. Target-class.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.