Build an accessible “Skip to Content” anchor link with React.
Friday 07 January 2022 11:15 AM Beirut Time · 1076
Wajdi Alkayal Wajdi Alkayal
Build an accessible “Skip to Content” anchor link with React.
<header>
  <a class="skip-link" href="#main-id">Skip Navigation Links</a>
  <nav>
    ... more links
  </nav>
</header>

Your SCSS styling can be designed as such:

.skip-link {
    margin-right: 1rem;
    position: absolute;
    transform: translateX(-200%);
    transition: transform 0.3s;

    &:focus {
        position: static;
        transform: translateX(0);
    }
}

Implementational Pitfalls

Related Posts
Graphic design
09 June
The Power of Email Marketing
03 June
Photography
01 June