diff options
| author | Martijn Cuppens <[email protected]> | 2019-05-20 10:03:51 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-05-20 10:03:51 +0200 |
| commit | a4a04cd9ec741050390746f8056cc79a9c04c8df (patch) | |
| tree | 7013b5407237066b483a87e54f0bc0169656ded7 /site/content/docs/4.3/getting-started | |
| parent | 1a41b0ffa615948e3197b389cb0fb0be9227a8d9 (diff) | |
| download | bootstrap-a4a04cd9ec741050390746f8056cc79a9c04c8df.tar.xz bootstrap-a4a04cd9ec741050390746f8056cc79a9c04c8df.zip | |
`.sr-only` & `.sr-only-focusable` tweaks (#28720)
* Prevent .sr-only-focusable overriding properties when being focused
* Typo
Diffstat (limited to 'site/content/docs/4.3/getting-started')
| -rw-r--r-- | site/content/docs/4.3/getting-started/accessibility.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/4.3/getting-started/accessibility.md b/site/content/docs/4.3/getting-started/accessibility.md index 83dd3a9f3..5b642dcfe 100644 --- a/site/content/docs/4.3/getting-started/accessibility.md +++ b/site/content/docs/4.3/getting-started/accessibility.md @@ -37,10 +37,10 @@ Content which should be visually hidden, but remain accessible to assistive tech </p> {{< /highlight >}} -For visually hidden interactive controls, such as traditional "skip" links, `.sr-only` can be combined with the `.sr-only-focusable` class. This will ensure that the control becomes visible once focused (for sighted keyboard users). +For visually hidden interactive controls, such as traditional "skip" links, use the `.sr-only-focusable` class. This will ensure that the control becomes visible once focused (for sighted keyboard users). **Watch out, since Bootstrap 5 the `.sr-only-focusable` class may not be used in combination with the `.sr-only` class.** {{< highlight html >}} -<a class="sr-only sr-only-focusable" href="#content">Skip to main content</a> +<a class="sr-only-focusable" href="#content">Skip to main content</a> {{< /highlight >}} ### Reduced motion |
