How to remove autofill input fields background colour?

The website form page to remove input auto fill-up background colour, all input fields in form page or contact page see in chrome browser, if you want to change input background auto-filling colour the email and password etc fields form page all input fields display auto-filling background change yellow to white in the all fields form page for your site.

How to change autofill input fields background color in form page

The any type form page for use below css code, It's very simple code, copy and add/paste this css code in your style.css file in your website. You can change input box styles for form page on chrome browser.

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
-webkit-box-shadow: 0 0 0 30px white inset !important;
}

Post a Comment

0 Comments