Remove form yellow background after autocompletion

2

Good night, according to the image below, does anyone know how to not leave the background yellow after a chrome autofill ??? I have already seen some ways to change the color, but keep the original background did not find, even if I change the color to a white still looks ugly because the original form is transparent. Note: I'm using materialize

    
asked by anonymous 22.05.2018 / 04:16

1 answer

2

You can use css:

background-color: transparent;

Or

background-color: inherit;

You can also try to put !important after the value, to force this property if another is running after the assignment.

background-color: inherit !important;
    
22.05.2018 / 14:12