本文主要是介绍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解决input[type=text]自动填充(auto fill)内容时颜色为黄色的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!