Correct. You might also try to adjust the font only on focus:
Code:
input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
select:focus,
textarea:focus {
font-size: 16px;
}
Leave a comment: