We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this codepen, if you select one dropdown it'll 'activate' the other:
https://codepen.io/cpsievert/pen/xxgWQjp
Also, note that the codepen uses the following markup:
<ul class="dropdown-menu"> <a class="dropdown-item" href="#">Action</a> </ul>
But, if you use the markup structure that the docs recommend, namely:
<ul class="dropdown-menu"> <li><a class="dropdown-item" href="#">Action</a></li> </ul>
Then you'll get other, different, issues with the .active class not being updated properly...
.active
The text was updated successfully, but these errors were encountered:
Close twbs#33625: scope selector to dropdownElement when adding activ…
dc029ca
…e classes
.dropdown-item
<li>
Close twbs#33625: support .dropdown-item wrapped in <li> tags
d976313
Successfully merging a pull request may close this issue.
In this codepen, if you select one dropdown it'll 'activate' the other:
https://codepen.io/cpsievert/pen/xxgWQjp
Also, note that the codepen uses the following markup:
But, if you use the markup structure that the docs recommend, namely:
Then you'll get other, different, issues with the
.active
class not being updated properly...The text was updated successfully, but these errors were encountered: