天天看點

css解決input[type=text]自動填充(auto fill)内容時顔色為黃色

原因:

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {

    background-color:rgb(250, 255, 189);

    background-image:none;

    color:rgb(0, 0, 0);

}

解決

input:-webkit-autofill {

    box-shadow: 0 0 0px 1000px #ffffff inset !important;

}