FrontEnd/HTML5 _CSS
autofill css 없애기
아라한사
2020. 10. 2. 14:32
예전에도 했었나..아무튼.. 결론
/* 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;
-webkit-text-fill-color: #fff !important;
}
selleo.com/til/posts/xhgzlfgcql-a-way-to-make-autofilled-inputs-background-transparent
css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/