1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-31 17:11:48 +02:00

Docs: add missing aria-disabled='true' to disabled anchors

This commit is contained in:
Julien Déramond
2023-06-26 16:55:07 +02:00
committed by Mark Otto
parent 52d53696d2
commit 3515ac16a1
18 changed files with 60 additions and 60 deletions

View File

@@ -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 >}}