bootstrap dropdown bubble align right (not push-right)

Source: https://stackoverflow.com/questions/18892351/bootstrap-dropdown-bubble-align-right-not-push-right

Bootstrap 3.1+
Adding the class .dropdown-menu-right to the same div containing the class dropdown-menu:
<div class="dropdown-menu dropdown-menu-right">
    STUFF
</div>
Bootstrap 2.3 & 3.0
Add the class .pull-right to the same div containing the class dropdown-menu
<div class="dropdown-menu pull-right">
    STUFF
</div>
This seems to work for me using bootstrap 3.0

Không có nhận xét nào:

Is there a way to chain multiple tailwind css classes on a single hover instance?

 https://stackoverflow.com/questions/73524088/is-there-a-way-to-chain-multiple-tailwind-css-classes-on-a-single-hover-instance There is a wa...