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

标签 css internet-explorer-10

我无法从 IE 10 中删除 password eye。 我尝试使用

input[password]::-ms-reveal {display : none ;}

但对我不起作用。

有什么建议吗?

最佳答案

这个很好用:

input[type=password]::-ms-reveal,
input[type=password]::-ms-clear
{
    display: none;
}

关于css - 如何从密码字段中删除眼睛?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18970150/

相关文章:

html - 导航栏无响应

html - 如何将内容分发到它们之间有边框的列? (文字出版社)

javascript - 在 IE10 中使用框架会导致 SCRIPT5002 : Function expected error

javascript - IE8 标准不支持 array.map 函数?

html - 尝试设置 HTML/CSS 表格以适应移动屏幕 - 不起作用

html - 响应式 html 布局高度 100% 不是根据父 div

internet-explorer - IE10 上的 CSS3 线性渐变

javascript - IE10 : getElementsByName() is not returning the elements that has same Id in IE10

javascript - 使用 IE 10 兼容模式使用 Mxgraph 旋转单元格

html - 我怎样才能将这个下拉列表绝对定位在溢出滚动父级中?