解决chrome浏览器下 input输入框有黄色背景的问题
2017-02-04 本文已影响0人
Marven_
使用css解决:
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 {
outline: 0;
}