3.0.0-alpha.4 Alpha
Light Dark Light Dark System Search /

Focus

A consistent focus ring helps with predictable keyboard navigation. Together with --wa-color-focus, these custom properties create a uniform focus state for Web Awesome components.

Custom Property Default Value
--wa-focus-ring-style solid
--wa-focus-ring-width 0.1875rem (3px)
--wa-focus-ring var(--wa-focus-ring-style) var(--wa-focus-ring-width) var(--wa-color-focus)
--wa-focus-ring-offset 0.0625rem (1px)

See your theme's focus ring in action by navigating this form example with your keyboard.

<form class="wa-block-spacing-m">
  <wa-input label="Text Input">
    <span slot="help-text">Press <kbd>Tab</kbd> to move focus to other interactive elements.</span>
  </wa-input>
  <wa-checkbox>Checkbox</wa-checkbox>
  <wa-button>Button</wa-button>
</form>

<style>
  form > * + * {
    display: block;
    width: fit-content;
    margin-block-start: var(--wa-space-m);
  }
</style>
    No results