IE10 + Log entry box below the browser type text entry box and type password input box appears crossed out the tail and eyes bug fixes default style

Question: IE10 + browser landing at the input box text entry box and type password input field type tail crossed out and eyes repair problems arise default style

solve:

<div>
     <input type="text" id="username" value="" placeholder="用户名"/>
     <input type="password" id="pwd" value="" placeholder="密码" />
</div>

<style>
    #username::-ms-clear{ display: none }
    #pwd::-ms-reveal { display: none }
</style>

 

Guess you like

Origin www.cnblogs.com/wkyuan/p/11313597.html