How to remove yellow background from Google Autofill in your web form

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>

Leave a Reply