css – 如何从密码字段中删除眼睛?

前端之家收集整理的这篇文章主要介绍了css – 如何从密码字段中删除眼睛?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法从IE 10中删除密码之眼.
我试过用
input[password]::-ms-reveal {display : none ;}

但对我不起作用.

有什么建议?

解决方法

这个工作得很好:
input[type=password]::-ms-reveal,input[type=password]::-ms-clear
{
    display: none;
}
原文链接:https://www.f2er.com/css/215558.html

猜你在找的CSS相关文章