Skip to content

DigitalA11Y

Your Accessibility Partner

  • Services
  • Products
  • Compliance
  • Resources
  • Blog
  • Contact
Search
DigitalA11Y
Your Accessibility Partner
Search

Using Visually Hidden Text as an Alternative to ARIA-Current

An alternative technique to using the aria-current attribute to indicate the current state of an element is to use visually hidden text. This involves adding the indication of the current state within an element that is visible on the page, but also includes visually hidden text that is only accessible to screen readers. This technique allows you to more easily control the placement and formatting of the indication and can be a robust solution. However, it does require a bit more work to implement compared to using the aria-current attribute.

Working Example

  • Current page: Element 1
  • Current step: Element 2
  • Current location: Element 3
  • Current date: Element 4
  • Current time: Element 5
  • Current: Element 6

Code

  • HTML
  • CSS
  • JavaScript
<ul>
  <li>
    <span class="visually-hidden">Current page: </span>Element 1
  </li>
  <li>
    <span class="visually-hidden">Current step: </span>Element 2
  </li>
  <li>
    <span class="visually-hidden">Current location: </span>Element 3
  </li>
  <li>
    <span class="visually-hidden">Current date: </span>Element 4
  </li>
  <li>
    <span class="visually-hidden">Current time: </span>Element 5
  </li>
  <li>
    <span class="visually-hidden">Current: </span>Element 6
  </li>
</ul>
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
NIL

Company

  • About
  • Blog
  • Careers
  • Contact

Services

  • Accessibility Audits
  • Accessibility Consulting
  • VPAT/ACR
  • Accessibility Trainings

Compliance

  • WCAG
  • ADA
  • Section 508
  • EN 301 549
  • EAA
  • AODA
  • ACA

Resources

  • Accessibility Resources
  • Understanding WCAG
  • WCAG Checklist
  • Understanding WAI-ARIA

Legal

  • Privacy Policy
  • Terms and Conditions
  • Disclaimer
  • Accessibility Statement for digitala11y.com
  • Sitemap

© 2025 DigitalA11Y
All Rights Reserved

Linkedin Twitter Facebook Instagram YouTube

DigitalA11Y
Plot No 108, 3rd Cross Rd, Saipuri Colony,
Hastinapuri Colony, Sainikpuri, Secunderabad -500094
Telangana, India.

Tel:(+91)99082 66680,
E-mail: [email protected]

Scroll to top
  • Services
  • Products
  • Compliance
  • Resources
  • Blog
  • Contact