Chrome自动完成背景色

时间:2020-01-18 21:14:54

标签: html css

似乎更改浏览器自动填充的输入(用户名是我的示例)的背景色的当前方法是使用transition

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;

}

#input-container input{
    display: block;
    background-color: transparent;
}

这是可行的,但是有什么更干净的方法可以使白白创建一个过渡吗?

example form

0 个答案:

没有答案