::placeholder

The ::placeholder is used to style the placeholder text of an input or textarea. Only a small number of CSS properties can be applied to the ::placeholder pseudo-element and they include the font-related, background-related, and color properties.

input::placeholder {
  color: white;
  text-transform: uppercase;
}