Bootstrap 3でのスキップリンク(覚書)

Bootstrap 3 にはスキップリンク設定ができるような.sr-onlyというクラスが設けられている

Accessibility Getting started · Bootstrap

Getting started · Bootstrap
Getting started · Bootstrap
<body>
  <a href="#content" class="sr-only">Skip to content</a>
  <div class="container" id="content">
    The main page content.
  </div>
</body>
Posted