Input text very small when hovering on autofill suggestion Input text very small when hovering on autofill suggestion google-chrome google-chrome

Input text very small when hovering on autofill suggestion


There is a solution:

input:-webkit-autofill::first-line {font-size: 16px}


input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus { // put your old style here}


Here is working solution that worked for me in 2021 for Chrome not to change font size on autocomplete suggest hover:

input#email {  font-size: 2rem;  color: blue;}input:-webkit-autofill::first-line {      color: red;      font-size: 2rem;}
<input id="email"></input>