1. 程式人生 > >Chrome瀏覽器,處理input自動填充時帶黃色背景色

Chrome瀏覽器,處理input自動填充時帶黃色背景色

/*Chrome瀏覽器開啟網頁,input自動賦值時,會帶上屎黃色的背景色,下面是通過延長增加自動填充背景色的方式, 讓使用者感受不到樣式的變化*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 99999999s;
  -webkit-transition: color 99999999s ease-out, background-color 99999999s ease-out;
}