autofill css 없애기
예전에도 했었나..아무튼.. 결론
/* 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
A way to make autofilled inputs background transparent - Today I Learned
Consider the following form There’s an issue with that form - If it’s filled with chrome-stored credentials - it looks like this Here’s the selector for autofilled input: input:-webkit-autofill It’s possible to change color of this box, like this:
selleo.com
css-tricks.com/snippets/css/change-autocomplete-styles-webkit-browsers/
Change Autocomplete Styles in WebKit Browsers | CSS-Tricks
We got a nice tip from Lydia Dugger via email with a method for changing the styles that WebKit browsers apply to form fields that have been
css-tricks.com