Table of Contents

Skip Link

About

A skip link is a anchor link that permits to jump in the tab order to:

The scroll is created by a anchor with a fragment uri.

Example

With bootstrap 5 and the visually-hidden-focusable 1) class (the control becomes visible once focused).

<div class="visually-hidden-focusable">
  <div class="container-xl">
    <a class="d-inline-flex p-2 m-1" href="#content">Skip to main content</a>
    <a class="d-none d-md-inline-flex p-2 m-1" href="#nav">Skip to docs navigation</a>
  </div>
</div>