search
HomeWeb Front-endHTML TutorialBootstrap button drop-down menu example tutorial

Bootstrap button drop-down menu example tutorial

Jul 17, 2017 pm 02:30 PM
bootstrapDrop-down menubutton

This chapter will explain how to use the Bootstrap class to add a drop-down menu to a button. To add a drop-down menu to a button, simply place the button and drop-down menu in a .btn-group . You can also use to indicate that the button acts as a drop-down menu.

Previous words

The button-type drop-down menu is basically the same as the drop-down menu in appearance. The difference is that ordinary drop-down menus are block elements, while button drop-down menus are inline-block elements. This article will introduce the Bootstrap button drop-down menu in detail

Overview

The button drop-down menu is actually an ordinary drop-down menu. The only difference is the external container "div.dropdown" Changed to "div.btn-group", the display changed from block to inline-block

<div>
  <button>按钮式下拉菜单 <span></span>
  </button>
  <ul>
<li><a>Action</a></li>
<li><a>Another action</a></li>
<li><a>Something else here</a></li>
<li>
<li><a>Separated link</a></li>
  </ul>
</div><div>
  <button>普通下拉菜单 <span></span>
  </button>
  <ul>
<li><a>Action</a></li>
<li><a>Another action</a></li>
<li><a>Something else here</a></li>
<li>
<li><a>Separated link</a></li>
  </ul>
</div>


Pop up

Some menus need to pop up. For example, the menu is at the bottom of the page, and this menu happens to have a drop-down menu. In order to give users a better experience, the drop-down menu has to pop up. In the Bootstrap framework, a class name "dropup" is specially proposed for this effect. You only need to add this class name to "btn-group"

[Triangle]

 Button The default downward triangle is created by adding a "" tag element to the

  按钮下拉菜单

This triangle is completely created by CSS code to achieve

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

In addition, the triangle "caret" in the button has been styled to a certain extent:

.btn .caret {
  margin-left: 0;
}.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

If the triangle direction To display upward, you need to append the "dropup" class name to the ".btn-group" class. It can be seen that the difference between the upward triangle and the downward triangle: In fact, it changes the value of a border-bottom

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px solid;
}
<div>
<button>按钮下拉菜单<span></span></button><ul>
<li><a>按钮下拉菜单项</a></li>
<li><a>按钮下拉菜单项</a></li>
<li><a>按钮下拉菜单项</a></li>
<li><a>按钮下拉菜单项</a></li>
</ul>
</div>


Split

The split button drop-down menu is actually an artificial combination of buttons and The triangle is split, leaving only one separate button in the end

<div>
  <button>Action</button>
  <button><span></span>
  </button>
  <ul>
<li><a>Action</a></li>
<li><a>Another action</a></li>
<li><a>Something else here</a></li>
<li>
<li><a>Separated link</a></li>
  </ul>
</div>


##Size

Button drop-down The menu is suitable for buttons of all sizes, including btn-xs, btn-lg, btn-sm, etc. Of course, ordinary drop-down lists also support changing button sizes

<div>
  <button>Extra small button <span></span>
  </button>
  <ul>
<li><a>Action</a></li>
<li><a>Another action</a></li>
<li><a>Something else here</a></li>
  </ul>
</div><div>
  <button>Large button <span></span>
  </button>
  <ul>
<li><a>Action</a></li>
<li><a>Another action</a></li>
<li><a>Something else here</a></li>
  </ul>
</div><div>
  <button>small button <span></span>
  </button>
  <ul>
<li><a>Action</a></li>
<li><a>Another action</a></li>
<li><a>Something else here</a></li>
  </ul>
</div>


Finally

For some extended usage of ordinary drop-down lists, such as dividers, dividers, alignment, menu item status, etc., button drop-down menus also support it. Therefore, I personally feel that it is a bit redundant to set up the button drop-down menu component in bootstrap. It is only the difference between block and inline-block, but there is no functional difference

The above is the detailed content of Bootstrap button drop-down menu example tutorial. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the root tag in an HTML document?What is the root tag in an HTML document?Apr 29, 2025 am 12:10 AM

TheroottaginanHTMLdocumentis.Itservesasthetop-levelelementthatencapsulatesallothercontent,ensuringproperdocumentstructureandbrowserparsing.

Are the HTML tags and elements the same thing?Are the HTML tags and elements the same thing?Apr 28, 2025 pm 05:44 PM

The article explains that HTML tags are syntax markers used to define elements, while elements are complete units including tags and content. They work together to structure webpages.Character count: 159

What is the significance of <head> and <body> tag in HTML?What is the significance of <head> and <body> tag in HTML?Apr 28, 2025 pm 05:43 PM

The article discusses the roles of <head> and <body> tags in HTML, their impact on user experience, and SEO implications. Proper structuring enhances website functionality and search engine optimization.

What is the difference between <strong>, <b> tags and <em>, <i> tags?What is the difference between <strong>, <b> tags and <em>, <i> tags?Apr 28, 2025 pm 05:42 PM

The article discusses the differences between HTML tags , , , and , focusing on their semantic vs. presentational uses and their impact on SEO and accessibility.

Please explain how to indicate the character set being used by a document in HTML?Please explain how to indicate the character set being used by a document in HTML?Apr 28, 2025 pm 05:41 PM

Article discusses specifying character encoding in HTML, focusing on UTF-8. Main issue: ensuring correct display of text, preventing garbled characters, and enhancing SEO and accessibility.

What are the various formatting tags in HTML?What are the various formatting tags in HTML?Apr 28, 2025 pm 05:39 PM

The article discusses various HTML formatting tags used for structuring and styling web content, emphasizing their effects on text appearance and the importance of semantic tags for accessibility and SEO.

What is the difference between the 'id' attribute and the 'class' attribute of HTML elements?What is the difference between the 'id' attribute and the 'class' attribute of HTML elements?Apr 28, 2025 pm 05:39 PM

The article discusses the differences between HTML's 'id' and 'class' attributes, focusing on their uniqueness, purpose, CSS syntax, and specificity. It explains how their use impacts webpage styling and functionality, and provides best practices for

What is the 'class' attribute in HTML?What is the 'class' attribute in HTML?Apr 28, 2025 pm 05:37 PM

The article explains the HTML 'class' attribute's role in grouping elements for styling and JavaScript manipulation, contrasting it with the unique 'id' attribute.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment