在 input
中输入时,如果选择了历史,会在如数框中出现一个背景色,很不协调,如下图:
image.png
我们可以通过 css
来将他们去除
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0px 1000px white inset !important;
transition: background-color 5000s ease-in-out 0s;
}