浏览器密码自动填充样式
input {
background-color: rgba(255, 255, 255, 0) !important;
}
input:-webkit-autofill {
transition: background-color 5000s ease-in-out 0s;
}
input:-webkit-autofill:focus {
-webkit-text-fill-color: #333 !important;
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
上次更新: 2022/08/14, 18:25:44