Bootstrap drop-down menu float problem, bootstrapfloat

Source: Internet
Author: User

Bootstrap drop-down menu float problem, bootstrapfloat

When learning the drop-down menu in bootstrap, you may encounter the following situations:

<Div class = "dropdown"> <button class = "btn-default dropdown-toggle" type = "button" id = "dropdownMenu1" data-toggle = "dropdown"> drop-down menu <span class = "caret"> </span> </button> <ul class = "dropdown-menu pull-right" role = "menu" aria-labelledby = "dropdownMenu1 ">... </Ul> </div>

The Class Name of ul is pull-right or dropdown-menu-right. You can change the direction of the drop-down menu:

The default style is:

The following is the css code of. pull-right.

. Dropdown-menu.pull-right {right: 0; left: auto;}. dropdown-menu-right {right: 0; left: auto ;}

However, you also need to set the style of the parent element div to float: left !!!

Cause:

Div is a block-level element that automatically fills the width of the parent element ,:

 

After the float of the div is set to left, the div will leave the Document Stream to wrap the button element, which is the alignment of the menu to the right of the button.

For more information, please comment. What ~~~

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.