我遇到一个问题,Chrome
覆盖了background-image
的自动填充类。
我尝试过以下操作,但它没有任何效果:
input:-webkit-autofill,
textarea:-webkit-autofill
{
background-image: inherit !important;
}
我认为这不会起作用,但无论如何都要试一试。
我知道摆脱黄色很容易,但是如何恢复图像?
JavaScript
或jQuery
如果需要可以。
编辑我应该注意,我无法在我设置背景图片的地方使用!important
,因为当我这样做时会发生奇怪的行为,但不确定是否存在是因为我将定义分开了,例如background-image
,background-position
和background-repeat
,我只在!important
使用了background-image
。