css

[Chrome] input 자동완성 시 채워지는 배경 색상 글자 색상 변경하기

Bittersweet- 2021. 10. 14. 08:24
728x90
/* Change the color to your own background color */
 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 white inset !important;
     -webkit-text-fill-color: #fff !important;
   }

'css' 카테고리의 다른 글

background-clip  (0) 2021.11.18
nth-child (n번부터 n번째까지)  (0) 2021.11.11
textarea - resize  (0) 2021.10.13
mix-blend-mode  (0) 2021.09.13
flex-box-gap  (0) 2021.09.13