How to remove yellow background from Google Autofill in your web form
Sep 15
Uncategorized No Comments
For web developer
The best way is using CSS (Cascading Style Sheets) by adding background colour for your form field with !important.
For example:
<style type=”text/css”>
input {background-color: #FFF !important;}
</style>
input {background-color: #FFF !important;}
</style>
RSS