Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • be provided with a visual indicator of the form element that currently has keyboard focus

  • be provided with a keyboard focus indicator that is highly visible/emphasized and that has sufficient color contrast between foreground and background

...

Markup and Code

In addition to the default keyboard focus indicator provided by the browser (different treatment depending on the browser), you can use CSS to make the focus indicator more visually apparent and keyboard-friendly.

Ensure that the focus indicator is highly visible with sufficient contrast.

Code Block
<label for="name">Your name:</label>
<input id="name" type="text">

...