问题:
input输入框自动填充时,背景色会发生改变
解决:
添加以下css样式
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
-webkit-text-fill-color: #333;
transition: background-color 5000s ease-in-out 0s;
}
问题:
input输入框自动填充时,背景色会发生改变
解决:
添加以下css样式
input:-internal-autofill-previewed,
input:-internal-autofill-selected {
-webkit-text-fill-color: #333;
transition: background-color 5000s ease-in-out 0s;
}