問題描述:谷歌瀏覽器默認(rèn)填充內(nèi)容是,背景色會變成黃色
解決方法一:使用其他顏色覆蓋黃色背景
input:-webkit-autofill { box-shadow: 0 0 0px 1000px white inset;}
解決方法二:關(guān)閉自動填充功能,就不會有黃色背景了
<input id="phone" autocomplete="off" type="text" maxLength="11" placeholder="請輸入您的手機號碼" />
問題描述:谷歌瀏覽器默認(rèn)填充內(nèi)容是,背景色會變成黃色
解決方法一:使用其他顏色覆蓋黃色背景
input:-webkit-autofill { box-shadow: 0 0 0px 1000px white inset;}
解決方法二:關(guān)閉自動填充功能,就不會有黃色背景了
<input id="phone" autocomplete="off" type="text" maxLength="11" placeholder="請輸入您的手機號碼" />