Change font color of autofill input field

前端 未结 3 865
萌比男神i
萌比男神i 2020-12-31 03:08

I\'ve managed to change the background color of an autofilled input field from yellow to white with the following code:

input.login:-webkit-autofill {
    -w         


        
3条回答
  •  误落风尘
    2020-12-31 03:42

    Try the below CSS

    input:-webkit-autofill {
        -webkit-box-shadow:0 0 0 50px white inset; /* Change the color to your own background color */
        -webkit-text-fill-color: #999;
    }
    input:-webkit-autofill:focus {
        -webkit-box-shadow: /*your box-shadow*/,0 0 0 50px white inset;
        -webkit-text-fill-color: #999;
    }
    

提交回复
热议问题