프론트엔드/HTML | CSS
인풋태그 패스워드 타입 "눈" 감추기
Khookie
2022. 1. 17. 23:31
input 태그의 password 타입에서 나오는 요 눈 버튼을 감추는 방법
css 설정에 아래 내용을 추가하면 된다
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
display: none;
}
참고: html - How to hide the eye from a password input in MS Edge and IE - Stack Overflow
How to hide the eye from a password input in MS Edge and IE
I now found an answer: It just works when I add display: none !important;. I dont know, what exactly is blocking the display: none; but if someone else has this error, try to add !important and check
stackoverflow.com