1. 程式人生 > >解決chrome瀏覽器表單自動填充導致input文字框背景變成偏黃色的問題

解決chrome瀏覽器表單自動填充導致input文字框背景變成偏黃色的問題

chrome表單自動填充後,input文字框的背景會變成偏黃色的,想必大家都會碰到這種情況吧,這是由於chrome會預設給自動填充的input表單加上input:-webkit-autofill私有屬性造成的,解決方法如下

在樣式中加入:

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #bddaf0 inset !important;
}