Skip to content

Technique C15:Using CSS to change the presentation of a user interface component when it receives focus

Applicability

CSS, HTML

This technique relates to:

Description

The objective of this technique is to demonstrate how visual appearance may be enhanced via style sheets to provide visual feedback when an interactive element has focus or when a user hovers over it using a pointing device. Highlighting the element that has focus or is hovered over can provide information such as the fact that the element is interactive or the scope of the interactive element.

Providing visual feedback may be possible through more than one mode. Usually, it is attained through using a mouse to hover over the element or a keyboard to tab to the element.

Examples

Example 2: Highlighting elements that receive focus

In this example, the :focus pseudo-class is used to change the style applied to input fields when they receive focus by changing the background color.

<!doctype html>
<html lang="en">
  <head>
    <style>
      input[type=text]:focus-visible {
        outline:2px solid #0054AE;
        outline-offset:2px;
      }

      input[type=checkbox]:focus + label, input[type=radio]:focus + label {
        background-color:#1E2EB8; 
        color:#FFF;
      }
    </style>
  </head>
  <body>
    <form>
      <div>
        <label for="fname">Name: </label>
        <input autocomplete="name" type="text" name="fname" id="fname">
      </div>
      <div>
        <input type="radio" name="sex" value="male" id="sm">
        <label for="sm">Male</label>
      </div>
      <div>			
        <input type="radio" name="sex" value="female" id="sf">
        <label for="sf">Female</label>
      </div>
    </form>
  </body>
</html>

Working example of this code: Example of highlighting elements that receive focus.

Other sources

No endorsement implied.

Tests

Procedure

For each element able to attain focus:

  1. Using a keyboard, tab to the component.
  2. Check that the focus indicator changes color.
  3. Check that the focus indicator is removed when the component loses focus.

Expected Results

  • Checks #2 and #3 true.
Back to Top