解决Edge浏览器input密码框默认显示小眼睛icon

474 阅读1分钟

方式一:通过浏览器禁用

进入 设置-->密码-->设置 页面,关闭下图按钮

image.png

方式二:通过代码禁用

input::-ms-reveal {
    display: none;
}