Yes, there's a lot of questions about this, but none of them seems to work with me.
I need to change the autocomplete background color on google chrome:
I already tried all of this:
This is my css:
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px black inset;
}
And this is my cshtml:
 <div class="row m-t-50">
       <div class="input-field col s12">
           <input id="last_name" type="text" class="validate" asp-for="Username">
           <label for="last_name">Usuário</label>
       </div>
    </div>Any ideas?


 
     
    

