[CSS]input 자동완성(autocomplete) 수정하기

chaewon·2023년 2월 10일
0

HTML, CSS

목록 보기
9/10

input 자동완성에 사용되는 background와 font의 색상을 변경할 수 있다.

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
 transition: background-color 5000s ease-in-out 0s;
 -webkit-transition: background-color 9999s ease-out;
 -webkit-box-shadow: 0 0 0px 1000px #0039CB inset !important;
 -webkit-text-fill-color: #fff !important;
}
profile
의문은 '삶의 수준'을 결정하고, 질문은 '삶 자체'를 바꾼다.

0개의 댓글