input autocomplete css color

Solutions on MaxInterview for input autocomplete css color by the best coders in the world

showing results for - "input autocomplete css color"
Theo
25 Jun 2018
1/* Change the white to any color */
2input:-webkit-autofill,
3input:-webkit-autofill:hover, 
4input:-webkit-autofill:focus, 
5input:-webkit-autofill:active
6{
7 -webkit-box-shadow: 0 0 0 30px white inset !important;
8}
9
Claudia
19 Mar 2016
1/*Change text in autofill textbox*/
2input:-webkit-autofill
3{
4 -webkit-text-fill-color: yellow !important;
5}
6