问题
The default background-color of the :-webkit-autofill
is orange. How to change it?
:-webkit-autofill, input:-webkit-autofill {
background-color: #fff !important;
}
The above code doesn't work.
回答1:
It's not background-color
that gets rid of that yellow/orange, it's the box-shadow
:
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 100px #fff inset;
-moz-box-shadow: 0 0 0 100px #fff inset;
box-shadow: 0 0 0 100px #fff inset;
}
来源:https://stackoverflow.com/questions/29773268/how-to-change-the-style-of-webkit-autofill