Hi guys Im working on basic signup and signin forms.In my input fields I consist of background image and white color.In chrome autofill was replacing my background image and color with pale yellow color.For this I have searched and found out few lines of code....
input:-webkit-autofill {
background-color: #FAFFBD !important;
}
This was making my backgroundcolor to display...but Unable to show the backgroundimage in input field.Can I get few bits of code to show the background image when autofill in chrome.
input#email {
background: url("~mail.png") no-repeat scroll 16px 11px #FFFFFF;
background-size: 20px 20px;
z-index: 999;
}