谷歌瀏覽器、在記住密碼後,會給用戶密碼輸入框渲染上一個背景色,在有些時候這個瀏覽器自動使用的渲染背景色會影響頁面的UI界面css
下面是css方法處理解決。web
input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {瀏覽器
-webkit-text-fill-color: #ededed !important; -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; background-color:transparent; background-image: none; transition: background-color 50000s ease-in-out 0s; //背景色透明 生效時長 過渡效果 啓用時延遲的時間
}spa