3.0.0-alpha.7 Alpha
Default Default Classic Light Dark Light Dark System
Search /
Default Default Classic Light Dark Light Dark System
Style Utilities

Visually Hidden

.wa-visually-hidden .wa-visually-hidden-force

The visually hidden utility makes content accessible to assistive devices without displaying it on the screen.

"there are real world situations where visually hiding content may be appropriate, while the content should remain available to assistive technologies, such as screen readers. For instance, hiding a search field's label as a common magnifying glass icon is used in its stead." — The A11Y Project

Since visually hidden content can receive focus when tabbing, the element will become visible when something inside receives focus. This behavior is intentional, as otherwise sighted keyboard users wouldn't be able to determine where the focus indicator is.

<div style="min-height: 1.875rem;">
  <a href="#" class="wa-visually-hidden">Skip to main content</a>
</div>

Examples

In this example, the link will open a new window. Screen readers will announce "opens in a new window" even though the text content isn't visible to sighted users.

Visit External Page
<a href="https://example.com/" target="_blank">
  Visit External Page
  <wa-icon name="arrow-up-right-from-square" variant="regular"></wa-icon>
  <span class="wa-visually-hidden">opens in a new window</span>
</a>

Content Conveyed By Context

Adding a label may seem redundant at times, but they're very helpful for unsighted users. Rather than omit them, you can provide context to unsighted users with visually hidden content that will be announced by assistive devices such as screen readers.

<wa-card style="width: 100%; max-width: 360px;">
  <header class="wa-visually-hidden">
    Personal Info
  </header>
  <wa-input label="Name" style="margin-bottom: .5rem;"></wa-input>
  <wa-input label="Email" type="email"></wa-input>
</wa-card>

Force Visually Hidden

There are cases where you want to always visually hide certain content, even when it's focused. For example when hiding a checkbox to render a custom one:

<label>
  <span class="checkbox">
    <input type="checkbox" class="wa-visually-hidden-force" />
  </span>
  I have read the terms and conditions
</label>

<style>
.checkbox {
  display: inline-flex;
  vertical-align: middle;
  width: var(--wa-font-size-l);
  height: var(--wa-font-size-l);
  background: var(--wa-color-neutral-fill-quiet);
  color: var(--wa-color-neutral-on-quiet);
  border-radius: var(--wa-border-radius-xs);
  margin-inline-end: var(--wa-space-xs);

  &::after {
    content: "✓" / "";
    margin: auto;
    transition: opacity var(--wa-transition-slow) var(--wa-transition-easing);
  }

  &:has(:checked) {
    background: var(--wa-color-brand-fill-loud);
    color: var(--wa-color-brand-on-loud);
  }

  &:not(:has(:checked)) {
    &::after {
      opacity: 0;
    }
  }

  &:focus-within {
    outline: var(--wa-focus-ring);
    outline-offset: var(--wa-focus-ring-offset);
  }
}
</style>
    No results