1. 程式人生 > >如何去除input框在谷歌瀏覽器下的黃色底紋

如何去除input框在谷歌瀏覽器下的黃色底紋

    現象:谷歌瀏覽器下input框有預設記住功能,此時若選擇了歷史輸入的內容,則變成如下圖;非歷史輸入,是沒有的。

   方法一

input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px white inset;
}
此法僅適用純色背景;

   方法二

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
-webkit-transition-delay: 99999s;
-webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}