# [html/css] input autofill ν•΄κ²°

input μš”μ†Œμ˜ μžλ™μ™„μ„± κΈ°λŠ₯을 μ‚¬μš©ν•˜λ©΄ μžλ™μœΌλ‘œ λ°°κ²½ μ»¬λŸ¬κ°€ λ³€κ²½λœλ‹€.

μ•„λž˜ μ½”λ“œλ₯Ό 톡해 이λ₯Ό ν•΄κ²°ν•  수 μžˆλ‹€.

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: green;
}
1
2
3
4
5
6
7

-webkit-box-shadow λŠ” λ°°κ²½ 컬러λ₯Ό λ³€κ²½ν•˜λŠ” μ—­ν• , -webkit-text-fill-color λŠ” ν…μŠ€νŠΈ 컬러λ₯Ό λ³€κ²½ν•˜λŠ” 역할을 ν•œλ‹€.

μžμ„Έν•œ λ‚΄μš©μ€ μ•„λž˜ μ—¬κΈ°μ„œ (opens new window) 확인할 수 μžˆλ‹€.

Last Updated: 2022. 6. 5. μ˜€ν›„ 3:42:39