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/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d41894ce51a1ae3b6e9d96eb63bf9cc3b50f64b;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 %}