input输入框在选择历史输入记录的时候,会默认带有黄色的背景,感觉非常的丑,与自己的主题格格不入,所以我们可以通过下面的代码片段去掉。
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset;
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
-webkit-box-shadow: 0 0 0 1000px white inset;
}