Pra*_*gya 9 css internet-explorer-10
我无法从IE 10中删除密码眼.我尝试使用
input[password]::-ms-reveal {display : none ;}
Run Code Online (Sandbox Code Playgroud)
但对我不起作用.
有什么建议?
小智 21
这个工作得很好:
input[type=password]::-ms-reveal,
input[type=password]::-ms-clear
{
display: none;
}
Run Code Online (Sandbox Code Playgroud)