카테고리 없음

type=password 없이 입력 문자 마스킹

로아_ 2023. 3. 29. 16:09
728x90

type=password 없이 입력 문자 마스킹

@font-face {
  font-family: 'password';
  font-style: normal;
  font-weight: 400;
  src: url(https://jsbin-user-assets.s3.amazonaws.com/rafaelcastrocouto/password.ttf);
}

input.key {
  font-family: 'password';
  width: 100px; height: 16px;  
}

<p>Password: <input class="key" type="text" autocomplete="off" /></p>

password.ttf
0.12MB

https://stackoverflow.com/questions/22457344/masking-input-characters-without-type-password

 

Masking input characters without type=password

So I have a problem with newer browsers saving passwords. Say I have a password box like so: <input type="password" autocomplete="off" /> New browsers like IE11 and Safari in iOS 7.1 have s...

stackoverflow.com

 

728x90