一、 現(xiàn)象
chrome瀏覽器表單自動填充后,input文本框的背景會變成黃色的,這是chrome瀏覽器會給自動填充的input表單加上input:-webkit-autofill私有屬性,然后對其賦如下值:
input:-webkit-autofill{
background-color: rgb(250,255,189);
background-image: none;
color: #000;
}
二、 解決方法
可以對input:-webkit-autofill使用足夠大的純色內(nèi)陰影來覆蓋input輸入框的黃色背景;如
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 30px white inset;
-webkit-text-fill-color: #000;
}