Styling input type file button

Published on: Sunday, 14.01.2024

This pseudo-element allows us to select and style the button of the input element of the file type.

<input type="file">
input::file-selector-button {
  background-color: white;
  color: black;
  padding: 0.5rem 1rem;
}