diff options
| author | Julien Déramond <[email protected]> | 2023-06-26 16:55:07 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2023-07-05 22:28:00 -0700 |
| commit | 3515ac16a171ca4bbb131237ff3324a6b0eb8743 (patch) | |
| tree | b4c2fe48ba40fcb41cca5e2e375e5cc912a78226 /site/content/docs/5.3/components/dropdowns.md | |
| parent | 52d53696d25782ecfa10930d5a297b60e2fc445e (diff) | |
| download | bootstrap-3515ac16a171ca4bbb131237ff3324a6b0eb8743.tar.xz bootstrap-3515ac16a171ca4bbb131237ff3324a6b0eb8743.zip | |
Docs: add missing `aria-disabled='true'` to disabled anchors
Diffstat (limited to 'site/content/docs/5.3/components/dropdowns.md')
| -rw-r--r-- | site/content/docs/5.3/components/dropdowns.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.3/components/dropdowns.md b/site/content/docs/5.3/components/dropdowns.md index 098882064..6e3811f1f 100644 --- a/site/content/docs/5.3/components/dropdowns.md +++ b/site/content/docs/5.3/components/dropdowns.md @@ -661,7 +661,7 @@ Add `.disabled` to items in the dropdown to **style them as disabled**. {{< example >}} <ul class="dropdown-menu"> <li><a class="dropdown-item" href="#">Regular link</a></li> - <li><a class="dropdown-item disabled">Disabled link</a></li> + <li><a class="dropdown-item disabled" aria-disabled="true">Disabled link</a></li> <li><a class="dropdown-item" href="#">Another link</a></li> </ul> {{< /example >}} |
