chrome浏览器input记录上次cookie信息后,有个黄色背景~如何去除!

首次,进来 input 没有背景色,提交信息后,记录cookie了~

下次,打开默认会显示上次的信息,然后 input 就会有一个黄色背景~

请问一下这个黄色背景要怎么去除呢?

阅读 8.8k
3 个回答

这个是浏览器的,chrome吧。
搜索到这样一个解决办法

input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}

但是测试发现,鼠标离开input之后颜色才变回默认的,离开之前还是浏览器的黄色背景。
原文地址:http://blog.csdn.net/wangxiaohui6687/article/details/10149579

:-webkit-autofill {
 -webkit-text-fill-color: #fff !important;
 transition: background-color 5000s ease-in-out 0s;
}

试试这个

推荐问题
宣传栏