Home > Web Front-end > CSS Tutorial > How to Stop Chrome\'s Autofill from Changing Input Field Fonts?

How to Stop Chrome\'s Autofill from Changing Input Field Fonts?

Patricia Arquette
Release: 2024-10-29 16:21:02
Original
193 people have browsed it

How to Stop Chrome's Autofill from Changing Input Field Fonts?

Preventing Chrome's Autofill-Induced Font Changes in Input Fields

Chrome users on Windows may encounter a peculiar annoyance when autofilling login forms: the font of the username or password input changes when hovering over a saved username. This seemingly minor issue can disrupt the alignment of the form's elements.

To prevent this font change, some may resort to setting a fixed width for the input field, but this only masks the problem rather than addressing it. A more desirable solution is to eliminate the font change at its source.

Unfortunately, conventional CSS techniques, such as targeting the input field with :-webkit-autofill and setting !important for font-related properties, have proven ineffective in this case.

However, a clever workaround has been discovered:

input {
  &:-webkit-autofill::first-line,
  &:-webkit-autofill,
  &:-webkit-autofill:hover,
  &:-webkit-autofill:focus,
  &:-webkit-autofill:active {
    font-family: Times, "Times New Roman", serif !important;
  }
}
Copy after login

This CSS rule specifically targets the first line of text rendered within the autofilled input field, ensuring that the desired font is applied even during autofill.

By implementing this solution, developers can prevent the unwanted font change caused by Chrome's autofill mechanism, restoring the integrity of their login forms.

The above is the detailed content of How to Stop Chrome\'s Autofill from Changing Input Field Fonts?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template