diff options
| author | XhmikosR <[email protected]> | 2017-10-31 13:21:20 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-10-31 21:36:17 +0200 |
| commit | 95025a992fdab7234b0f6b27aa61c2d848288816 (patch) | |
| tree | 0ffbe8c0afc47fbab17b05e00b6562f6b5d4f5c9 /docs | |
| parent | dde280618cce4efdce5652943634950c93ed62a5 (diff) | |
| download | bootstrap-95025a992fdab7234b0f6b27aa61c2d848288816.tar.xz bootstrap-95025a992fdab7234b0f6b27aa61c2d848288816.zip | |
Remove the redundant `role=navigation` from `nav`s.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/4.0/components/breadcrumb.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/4.0/components/breadcrumb.md b/docs/4.0/components/breadcrumb.md index 928ae101f..2cbcc17b9 100644 --- a/docs/4.0/components/breadcrumb.md +++ b/docs/4.0/components/breadcrumb.md @@ -10,20 +10,20 @@ group: components Separators are automatically added in CSS through [`::before`](https://developer.mozilla.org/en-US/docs/Web/CSS/::before) and [`content`](https://developer.mozilla.org/en-US/docs/Web/CSS/content). {% example html %} -<nav aria-label="breadcrumb" role="navigation"> +<nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item active" aria-current="page">Home</li> </ol> </nav> -<nav aria-label="breadcrumb" role="navigation"> +<nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Library</li> </ol> </nav> -<nav aria-label="breadcrumb" role="navigation"> +<nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">Home</a></li> <li class="breadcrumb-item"><a href="#">Library</a></li> |
