input自動填充背景變黃

2021-10-07 22:20:44 字數 770 閱讀 4874

chrome

表單自動填充後,

input

文字框的背景會變成黃色的,通過審查元素可以看到這是由於 chrome

會預設給自動填充的

input 表單加上

input:-webkit-autofill

私有屬性,然後對其賦予以下樣式:

對 chrome

預設定義的

background-color

,background-image

,color

使用 important

是不能提 高其優先順序的,但是其他屬性可使用

1、使用足夠大的純色內陰影來覆蓋

input

輸入框的黃色背景

input:-webkit-autofill,

textarea:-webkit-autofill,

select:-webkit-autofill

2、ios手機內變黃

.el-input__inner:-webkit-autofill

.el-input__inner:-webkit-autofill,

.el-input__inner:-webkit-autofill:hover,

.el-input__inner:-webkit-autofill:focus,

.el-input__inner:-webkit-autofill:active

input 輸入框 在自動填充時,背景顏色問題

問題 自動填充前 自動填充後 可以看出,自動填充後,input背景顏色變成了白色,解決辦法 純色陰影覆蓋底色 input webkit autofill再看看,自動填充後的效果 注意 這個方法有個問題,就是input 輸入框,不能有 圓角 border radius 而且只適用於純色背景框。可以看到...

input開始自動填充帳號密碼背景色發生變化

以登入頁面為例ui設計圖效果如下圖 進入登入頁面cookie自動填充帳號密碼之後input輸入框出現了背景色 解決方法 主要 就是加個陰影去掉背景色 input webkit autofill textarea webkit autofill,select webkit autofill webki...

如何去除瀏覽器input自動填充效果

今天寫登入介面的輸入框時輸入框時,發現乙個問題。我的登入介面兩個輸入框的大體 如下 理想的開啟登入介面的效果圖如下 如果瀏覽器儲存了表單使用者名稱和密碼的話,開啟介面的時候效果圖如下 主要是這兩個屬性 autocomplete off 和type text nf cus this.type pass...