浏览器自带的autocomplete默认样式是淡黄色的背景

浏览器自带的autocomplete默认样式是淡黄色的背景,字体也是黑色的

修改默认样式:

/*改变浏览器autocomplete默认的样式*/
p.login-input input:-webkit-autofill{
     -webkit-box-shadow: 0 0 0 1000px #002b43 inset!important;
     -webkit-text-fill-color: #fff!important;
}

 

另外:

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
     -webkit-transition-delay: 99999s;
     -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}

 

你可能感兴趣的:(前端)