From: Patrick H. Lauke Date: Sun, 14 Dec 2014 14:47:05 +0000 (+0000) Subject: Expand/clarify advice about skip links X-Git-Tag: v3.3.2~5^2~89^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F15363%2Fhead;p=thirdparty%2Fbootstrap.git Expand/clarify advice about skip links --- diff --git a/docs/_includes/getting-started/accessibility.html b/docs/_includes/getting-started/accessibility.html index 37c19315ce..cbb528dce2 100644 --- a/docs/_includes/getting-started/accessibility.html +++ b/docs/_includes/getting-started/accessibility.html @@ -3,12 +3,13 @@

Bootstrap follows common web standards and—with minimal extra effort—can be used to create sites that are accessible to those using AT.

Skip navigation

-

If your navigation contains many links and comes before the main content in the DOM, add a Skip to main content link immediately after your opening <body> tag. (read why)

+

If your navigation contains many links and comes before the main content in the DOM, add a Skip to main content link before the navigation (read why). Using the .sr-only class will visually hide the skip link, and the .sr-only-focusable class will ensure that the link becomes visible once focused (for sighted keyboard users).

{% highlight html %} Skip to main content + ...
- The main page content. +
{% endhighlight %}