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;

}

你可能感兴趣的:(css)