CSS - Pseudo-element - ::placeholder



Description

The ::placeholder pseudo-element represents placeholder text in an <input> or <textarea> field. The text as placeholder gives a hint on what needs to be entered in the field. The CSS properties can be used to change the appearance of the text, for example, set the font and color.

Only the subset of CSS properties that apply to the ::first-line pseudo-element, can be used in a rule using ::placeholder in its selector.

Syntax

selector::placeholder {
    /* ... */
}  

Accessibility Concerns:

  • It is important to check the contrast ratio between the color of the placeholder text and the background of the input.

  • If the color contrast is high, the placeholder text may be confused with as entered text. So to avoid this confusion, you may use the aria-describedby attribute, to add a text in closer proximity, that provides hint to the user.

  • When the user-entered text is rendered with the same styling as the placeholder text, in Windows High Contrast Mode, makes it difficult to distinguish between the placeholder text and the entered text.

  • The placeholders are not a replacement for the <label> element. The assistive technologies can not parse the <input> element.

CSS ::placeholder Example

Here is an example of ::placeholder pseudo-element:

<html> 
<head>
<style>
   .form {
      border: 2px solid black;
      background: lightgray;
      margin: 15px;
      padding: 25px;
      width: 250px;
   }

   input::placeholder { 
      color: grey; 
      font-style: italic;
      background-color: cornsilk;
      padding: 5px;
   }

   input {
      margin-bottom: 3px;
   }
</style>
</head>
<body>
   <div class="form">
      <input type="text" placeholder="First Name">
      <input type="text" placeholder="Last Name">
      <input type="text" placeholder="Address">
      <input type="text" placeholder="Phone">
   </div>
</body>
</html>

CSS - Pseudo-element - ::placeholder - Opaque text

This feature can be viewed only on Firefox.

Browsers like Firefox set the opacity of placeholders less than 100%. Set opacity:1 to get fully opaque placeholder text as demonstrated in the following example:

<html> 
<head>
<style>
   input::placeholder { 
      color: blue; 
      padding: 5px;
   }
   .opaque-text::placeholder {
      opacity: 1;
   }
</style>
</head>
<body>
   <h2>Execute on Firefox browser</h2>
   <div class="form">
      <input type="text" placeholder="Default Opacity">
      <input type="text" class="opaque-text" placeholder="Forced Opcaity">
   </div>
</body>
</html>
Advertisements