diff options
| author | Martijn Cuppens <[email protected]> | 2020-03-31 22:41:28 +0200 |
|---|---|---|
| committer | Martijn Cuppens <[email protected]> | 2020-03-31 22:52:57 +0200 |
| commit | c48d89cb70566c2378a563609789e7aa0b36d917 (patch) | |
| tree | c415b9c80163625be4dd3a2ec10063c1ce68d2dd /site/content/docs/4.3/examples/offcanvas/index.html | |
| parent | 695088ba8ff580012292c10fe58034754f5c71d9 (diff) | |
| download | bootstrap-c48d89cb70566c2378a563609789e7aa0b36d917.tar.xz bootstrap-c48d89cb70566c2378a563609789e7aa0b36d917.zip | |
Use unordered lists in dropdown-menus
Diffstat (limited to 'site/content/docs/4.3/examples/offcanvas/index.html')
| -rw-r--r-- | site/content/docs/4.3/examples/offcanvas/index.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/site/content/docs/4.3/examples/offcanvas/index.html b/site/content/docs/4.3/examples/offcanvas/index.html index 4a8501e3a..cc41316bc 100644 --- a/site/content/docs/4.3/examples/offcanvas/index.html +++ b/site/content/docs/4.3/examples/offcanvas/index.html @@ -31,11 +31,11 @@ body_class: "bg-light" </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="dropdown01" data-toggle="dropdown" aria-expanded="false">Settings</a> - <div class="dropdown-menu" aria-labelledby="dropdown01"> - <a class="dropdown-item" href="#">Action</a> - <a class="dropdown-item" href="#">Another action</a> - <a class="dropdown-item" href="#">Something else here</a> - </div> + <ul class="dropdown-menu" aria-labelledby="dropdown01"> + <li><a class="dropdown-item" href="#">Action</a></li> + <li><a class="dropdown-item" href="#">Another action</a></li> + <li><a class="dropdown-item" href="#">Something else here</a></li> + </ul> </li> </ul> <form class="d-flex"> |
