Button groups

Use button groups to join multiple buttons together as one composite component. Build them with a series of <a> or <button> elements.

Best practices

We recommend the following guidelines for using button groups and toolbars:

  • Always use the same element in a single button group, <a> or <button>.
  • Don't mix buttons of different colors in the same button group.
  • Use icons in addition to or instead of text, but be sure include alt and title text where appropriate.

Related Button groups with dropdowns (see below) should be called out separately and always include a dropdown caret to indicate intended behavior.

Default example

Here's how the HTML looks for a standard button group built with anchor tag buttons:

<div class="btn-group">
  <button class="btn">1</button>
  <button class="btn">2</button>
  <button class="btn">3</button>
</div>

Toolbar example

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

<div class="btn-toolbar">
  <div class="btn-group">
    ...
  </div>
</div>

Checkbox and radio flavors

Button groups can also function as radios, where only one button may be active, or checkboxes, where any number of buttons may be active. View the Javascript docs for that.

Get the javascript »

Dropdowns in button groups

Heads up! Buttons with dropdowns must be individually wrapped in their own .btn-group within a .btn-toolbar for proper rendering.


Button dropdowns

Example markup

Similar to a button group, our markup uses regular button markup, but with a handful of additions to refine the style and support Bootstrap's dropdown jQuery plugin.

<div class="btn-group">
  <a class="btn dropdown-toggle" data-toggle="dropdown" href="https://bhxjp.rangche.cn/">
    Action
    <span class="caret"></span>
  </a>
  <ul class="dropdown-menu">
    <!-- dropdown menu links -->
  </ul>
</div>

Works with all button sizes

Button dropdowns work at any size. your button sizes to .btn-large, .btn-small, or .btn-mini.

Requires javascript

Button dropdowns require the Bootstrap dropdown plugin to function.

In some cases—like mobile—dropdown menus will extend outside the viewport. You need to resolve the alignment manually or with custom javascript.


Split button dropdowns

Overview and examples

Building on the button group styles and markup, we can easily create a split button. Split buttons feature a standard action on the left and a dropdown toggle on the right with contextual links.

Sizes

Utilize the extra button classes .btn-mini, .btn-small, or .btn-large for sizing.

<div class="btn-group">
  ...
  <ul class="dropdown-menu pull-right">
    <!-- dropdown menu links -->
  </ul>
</div>

Example markup

We expand on the normal button dropdowns to provide a second button action that operates as a separate dropdown trigger.

<div class="btn-group">
  <button class="btn">Action</button>
  <button class="btn dropdown-toggle" data-toggle="dropdown">
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu">
    <!-- dropdown menu links -->
  </ul>
</div>

Dropup menus

Dropdown menus can also be toggled from the bottom up by adding a single class to the immediate parent of .dropdown-menu. It will flip the direction of the .caret and reposition the menu itself to move from the bottom up instead of top down.

<div class="btn-group dropup">
  <button class="btn">Dropup</button>
  <button class="btn dropdown-toggle" data-toggle="dropdown">
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu">
    <!-- dropdown menu links -->
  </ul>
</div>




Multicon-page pagination

When to use

Ultra simplistic and minimally styled pagination inspired by Rdio, great for apps and search results. The large block is hard to miss, easily scalable, and provides large click areas.

Stateful page links

Links are customizable and work in a number of circumstances with the right class. .disabled for unclickable links and .active for current page.

Flexible alignment

Add either of two optional classes to change the alignment of pagination links: .pagination-centered and .pagination-right.

Examples

The default pagination component is flexible and works in a number of variations.

Markup

Wrapped in a <div>, pagination is just a <ul>.

<div class="pagination">
  <ul>
    <li><a href="https://bhxjp.rangche.cn/">Prev</a></li>
    <li class="active">
      <a href="https://bhxjp.rangche.cn/">1</a>
    </li>
    <li><a href="https://bhxjp.rangche.cn/">2</a></li>
    <li><a href="https://bhxjp.rangche.cn/">3</a></li>
    <li><a href="https://bhxjp.rangche.cn/">4</a></li>
    <li><a href="https://bhxjp.rangche.cn/">Next</a></li>
  </ul>
</div>

Pager For quick previous and next links

About pager

The pager component is a set of links for simple pagination implementations with light markup and even lighter styles. It's great for simple sites like blogs or magazines.

Optional disabled state

Pager links also use the general .disabled class from the pagination.

Default example

By default, the pager centers links.

<ul class="pager">
  <li>
    <a href="https://bhxjp.rangche.cn/">Previous</a>
  </li>
  <li>
    <a href="https://bhxjp.rangche.cn/">Next</a>
  </li>
</ul>

Aligned links

Alternatively, you can align each link to the sides:

<ul class="pager">
  <li class="previous">
    <a href="https://bhxjp.rangche.cn/">&larr; Older</a>
  </li>
  <li class="next">
    <a href="https://bhxjp.rangche.cn/">Newer &rarr;</a>
  </li>
</ul>

Labels Markup
Default <span class="label">Default</span>
Success <span class="label label-success">Success</span>
Warning <span class="label label-warning">Warning</span>
Important <span class="label label-important">Important</span>
Info <span class="label label-info">Info</span>
Inverse <span class="label label-inverse">Inverse</span>

About

Badges are small, simple components for displaying an indicator or count of some sort. They're commonly found in email clients like Mail.app or on mobile apps for push notifications.

Available classes

Name Example Markup
Default 1 <span class="badge">1</span>
Success 2 <span class="badge badge-success">2</span>
Warning 4 <span class="badge badge-warning">4</span>
Important 6 <span class="badge badge-important">6</span>
Info 8 <span class="badge badge-info">8</span>
Inverse 10 <span class="badge badge-inverse">10</span>

Hero unit

Bootstrap provides a lightweight, flexible component called a hero unit to showcase content on your site. It works well on marketing and content-heavy sites.

Markup

Wrap your content in a div like so:

<div class="hero-unit">
  <h1>Heading</h1>
  <p>Tagline</p>
  <p>
    <a class="btn btn-primary btn-large">
      Learn more
    </a>
  </p>
</div>

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more


Page header

A simple shell for an h1 to appropriately space out and segment sections of content on a page. It can utilize the h1's default small, element as well most other components (with additional styles).

<div class="page-header">
  <h1>Example page header</h1>
</div>

Default thumbnails

By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.

Highly customizable

With a bit of extra markup, it's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails.

  • Thumbnail label

    Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

    Action Action

  • Thumbnail label

    Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.

    Action Action

Why use thumbnails

Thumbnails (previously .media-grid up until v1.4) are great for grids of photos or videos, image search results, retail products, portfolios, and much more. They can be links or static content.

Simple, flexible markup

Thumbnail markup is simple—a ul with any number of li elements is all that is required. It's also super flexible, allowing for any type of content with just a bit more markup to wrap your contents.

Uses grid column sizes

Lastly, the thumbnails component uses existing grid system classes—like .span2 or .span3—for control of thumbnail dimensions.

The markup

As mentioned previously, the required markup for thumbnails is light and straightforward. Here's a look at the default setup for linked images:

<ul class="thumbnails">
  <li class="span3">
    <a href="https://bhxjp.rangche.cn/" class="thumbnail">
      <img src="http://placehold.it/260x180" alt="">
    </a>
  </li>
  ...
</ul>

For custom HTML content in thumbnails, the markup changes slightly. To allow block level content anywhere, we swap the <a> for a <div> like so:

<ul class="thumbnails">
  <li class="span3">
    <div class="thumbnail">
      <img src="http://placehold.it/260x180" alt="">
      <h5>Thumbnail label</h5>
      <p>Thumbnail caption right here...</p>
    </div>
  </li>
  ...
</ul>

More examples

Explore all your options with the various grid classes available to you. You can also mix and match different sizes.


Lightweight defaults

Rewritten base class

With Bootstrap 2, we've simplified the base class: .alert instead of .alert-message. We've also reduced the minimum required markup—no <p> is required by default, just the outer <div>.

Single alert message

For a more durable component with less code, we've removed the differentiating look for block alerts, messages that come with more padding and typically more text. The class also has changed to .alert-block.


Goes great with javascript

Bootstrap comes with a great jQuery plugin that supports alert messages, making dismissing them quick and easy.

Get the plugin »

Example alerts

Wrap your message and an optional close icon in a div with simple class.

Warning! Best check yo self, you're not looking too good.
<div class="alert">
  <button class="close" data-dismiss="alert">×</button>
  <strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>

Heads up! iOS devices require an href="https://bhxjp.rangche.cn/" for the dismissal of alerts. Be sure to include it and the data attribute for anchor close icons. Alternatively, you may use a <button> element with the data attribute, which we have opted to do for our docs. When using <button>, you must include type="button" or your forms may not submit.

Easily extend the standard alert message with two optional classes: .alert-block for more padding and text controls and .alert-heading for a matching heading.

Warning!

Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.

<div class="alert alert-block">
  <a class="close" data-dismiss="alert" href="https://bhxjp.rangche.cn/">×</a>
  <h4 class="alert-heading">Warning!</h4>
  Best check yo self, you're not...
</div>

Contextual alternatives Add optional classes to change an alert's connotation

Error or danger

Oh snap! Change a few things up and try submitting again.
<div class="alert alert-error">
  ...
</div>

Success

Well done! You successfully read this important alert message.
<div class="alert alert-success">
  ...
</div>

Information

Heads up! This alert needs your attention, but it's not super important.
<div class="alert alert-info">
  ...
</div>

Examples and markup

Basic

Default progress bar with a vertical gradient.

<div class="progress">
  <div class="bar"
       style="width: 60%;"></div>
</div>

Striped

Uses a gradient to create a striped effect (no IE).

<div class="progress progress-striped">
  <div class="bar"
       style="width: 20%;"></div>
</div>

Animated

Takes the striped example and animates it (no IE).

<div class="progress progress-striped
     active">
  <div class="bar"
       style="width: 40%;"></div>
</div>

Options and browser support

Additional colors

Progress bars use some of the same button and alert classes for consistent styles.

Striped bars

Similar to the solid colors, we have varied striped progress bars.

Behavior

Progress bars use CSS3 transitions, so if you dynamically adjust the width via javascript, it will smoothly resize.

If you use the .active class, your .progress-striped progress bars will animate the stripes left to right.

Browser support

Progress bars use CSS3 gradients, transitions, and animations to achieve all their effects. These features are not supported in IE7-9 or older versions of Firefox.

Opera and IE do not support animations at this time.

Wells

Use the well as a simple effect on an element to give it an inset effect.

Look, I'm in a well!
<div class="well">
  ...
</div>

Close icon

Use the generic close icon for dismissing content like modals and alerts.

<button class="close">&times;</button>

iOS devices require an href="https://bhxjp.rangche.cn/" for click events if you rather use an anchor.

<a class="close" href="https://bhxjp.rangche.cn/">&times;</a>
营销文库信息安全名词如何利用饥饿营销信息安全的威胁主要来自于,-1wifi 网络安全企业营销网站建设公司长沙网站制作服务购物网站建设台州高端网站建设免费网站域名注册妖乱末世,巨兽屠城,万妖夜行,人间如狱。 神秘少年,半妖之身,踏上猎妖风云路,书写一代妖相传奇! 且看他,猎妖、除魔、斗巨鳖、擒天龙、佐明君、征天下、运筹帷幄、纵横捭阖、荡除妖兽、平定末世!韶云,一个弱势的农村娃,逆境中成长的过程。性格内向、外柔内刚,困境中挣扎,有情有意,心地纯洁善良,武才兼备。无奈世俗所迫,家境贫寒过着即凄凉又奋进的生活。从泥巴少年成长到青春豆蔻,一路走来,经历过懵懂到成熟的过程。静茹 , 貌美娇姿,娇柔可爱。乖巧中带着豪爽。两个少小的青梅竹马,到成长后的渐行渐远的情感。带着遗憾走过一段青春无怨的历程。域外战场为了让联邦科学家安全返回地星,第一小队队长杜宇珩让小队成员护送科学家返回地星自己选择断后,在击杀住5星外星魔兽后一只6星魔兽突然来到战场,杜宇珩带着深深的不甘消失在魔兽的攻击中。 没想到天不亡人,让杜宇珩重生到了《星域》发布的前一天,靠着前世的记忆在游戏与现实融合前就拥有了对抗外星的能力。灵气复苏,诡异降临。 万族入侵虎视眈眈,神秘传承不断涌现。 星空战舰,超凡生命,血与火的碰撞,生与死的较量。 是苟存还是湮灭? 钢铁森林中是谁在彷徨?璀璨星穹上是谁在守望?重生在了天道即将崩溃,鸿钧三清远走寻到,天地王母受援以进,现代科技飞速发展,对于修行却是半开放的世界,江屹煊被选为了复苏天道的棋子。 对于这些,江屹煊有话说:“我只想把仙丹当糖豆,把八九玄功当炼体术,让亲人无病无灾。用真火来炒菜,用灵泉当家庭饮用水,让石材释放出它最美味的口感。对于复苏天道什么的,谁爱作谁作,我没兴趣!”这部作品是瑞延风的小说系列,《三部曲》中的第一部曲 名字叫做行走在理想尽头的旅者,故事线围绕三部曲前作的《长达数年的自我对话》和《一条曲折蜿蜒的旅》开始正式书写,文内主要的题材就是现实中的大都市,现实题材就是说里面发生的故事都是由真实经历或者改变的故事,为了真实,里面使用了很多人们和我一起分享的亲身经历,并且与多个合作伙伴开始展开创作。我知道亲人的梦想,和亲人们寄托于我身上的梦想。 我也知道朋友们的梦想,和他们寄托于我身上的期望。 但我不知在什么时候忘掉了我自己的梦想, 也在不知不觉中不是那么的在乎真实的自己和那本属于自我内心深处的理想与期望。 这里是梦之乡,一个世外桃源,是来找回你内心最深处和最阴暗处的那只,照亮前方的萤火虫的地方。 不过没有人会带我们来到这里, 只有自己, 才会引导自己,前往这个 【梦之乡】(女帝,气运,悟道,天才,争霸) 瑶池圣女:手握日月摘星辰,世间无他这般人。 青莲剑圣:不会真有人觉得,世子大哥是凡人? 狠人女帝:不为成仙,不为成帝,只为在红尘中长伴君之左右! 君逍遥很难受。 他一句话,让女帝娘子,悟出了一念花开,君临天下。 他一首诗,让青莲剑圣,明了了绝世剑意,万古长歌。 他一幅画,让瑶池圣女,炼成了六道轮回,造化天功。 气运之子,一路高歌,一路横推,一路喊着世子才是真无敌! 君家世子,一直羡慕,一直苦笑,一直都是平平无奇小世子…… 终有一日,荒域大乱。 君逍遥破了老祖留下的世子不能出府的预言。 惊天动地的事发生了。 我为天子镇国门,血染江山亿万里! 不出世则以。 一出世必成天下第一! …… 孩子们。【玄尘日记】 穿越第八年,八岁,总算能练武了,武林,我玄尘来了! 十六岁了,我的武侠梦破了,穿越武侠,不能练内功,老天你在玩我! 二十岁,我离开了生活了二十年的少林,凭我的医术毒术,富贵一生无忧! 二十四岁,帮父母报完仇,我开了一家医馆,生意不错。 二十五岁,人生无常,大肠包小肠,好好的武侠风怎么突然就变了呢!
网络营销工程师报考 信息安全材料 中国大学生网络安全 团购网营销 顺德营销网站设计 设计网站首页多少钱 分析网络营销环境分析报告 关于网络营销的总结 网络营销活动策划案例 免费建站网站大全 前世老婆的识别方法咨询【www.richdady.cn】 为什么过世的前世解析【www.richdady.cn】 失业的前世记忆咨询【www.richdady.cn】 家庭关系的沟通技巧【www.richdady.cn】 纠纷的心理调适咨询【www.richdady.cn】 迟缓儿的案例分享威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 儿子不读书的咨询技巧咨询【σσЗ8З55О88О√转ihbwel 家庭关系中的矛盾如何解决?【微:qq383550880 】√转ihbwel 大龄剩女的心理调适咨询【www.richdady.cn】√转ihbwel 特殊学校的前世影响【企鹅383550880】√转ihbwel 存不住钱的理财建议咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 不爱读书的教育建议威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 性压抑【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 事业不顺的心理调适【微:qq383550880 】√转ihbwel 财运不佳的财运改善咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的案例分享咨询【企鹅383550880】√转ihbwel 前世因果咨询咨询【www.richdady.cn】√转ihbwel 冤亲债主咨询【微:qq383550880 】√转ihbwel 长期精神不振的原因咨询【微:qq383550880 】√转ihbwel 大龄剩女的婚恋困惑如何解决?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 网络安全攻防战 郑州网络营销策划公司 深圳信息安全认证中心 公司建设网站重要性 网警提示信息安全 信息安全管理体系的通用步骤 企业营销网站建设公司 设计网站首页多少钱 什么产品需要网络营销 网络注册信息安全工程师培训 网络安全 宣传 2017 公安网络安全检查方案 咨询营销 信息安全的发展阶段 网站建设与应用 黑客技术与网络安全 国家网络安全中心学网络营销4个月多少钱 无线网络安全性密码 平邑做网站 什么产品需要网络营销 禹州网站建设 常见的网络营销策略有哪些 企业网络安全概述 女生适合做网络安全 网络安全通报机制 如何获取所有网站 清华大学网络安全课程 如何获取所有网站 网络与信息安全法 营销牛官网 新浪网站网络营销策略 网络与信息安全研究所 网络信息安全学什么,-1中国网络安全专家 wifi 网络安全 国家网络安全中心学网络营销4个月多少钱 网络营销电话 网络营销在哪些行业 佛山网站建设服务器 北京网站制作排名 郑州网络营销策划公司 网络空间信息安全专业,-1 苏州企业网站建 关键信息基础设施网络安全检查方案 网络安全扫描工具 创一家网站 标志着网络营销的产生 海安做网站 网络安全 宣传 2017 广州购物商城网站开发 临清做网站 网络安全 案例 企业网站管理系统 网站建设的流程 信息安全材料 信息安全 中央,-1 网站模板化 昆明网站排名优化 信息安全与web安全 常见的网络营销策略有哪些 小红书网络营销分析 网络安全管理的功能 买网站模板 国际前瞻信息安全会议 台州高端网站建设 温州网站优化 网站使用帮助 电商营销公司做什么的杭州中小服装企业电子商务营销现状什么时候开始规模化发展? 工业控制系统信息安全指南 网络安全等级保护级别? 幼儿园网站设计 深圳企业网站制作报价 无线网络安全性密码 昆山企业网站设计 深圳企业网站制作报价 佛山网站建设服务器 信息安全管理体系的通用步骤 购物网站建设 女生适合做网络安全 卡通画风的网站 简述加强网络安全的途径有哪些?什么是防火墙有几种? 网络安全管理的功能 网络营销电话 网站使用帮助 网络安全通报机制 长春网站制作 网络安全管理的功能 信息安全风险评估的重要性 卡通画风的网站 网络营销基础期末考试 信息安全风险评估的重要性 营销牛官网 网络营销工程师报考 昆山企业网站设计 有经验的佛山网站建设 得力网络营销定位 资阳网站建设 购物网站建设 三零盛安 信息安全培训 网络营销在哪些行业 新浪网站网络营销策略 重庆建网站 海安做网站 如何让外部的人员能够访问企业网站了解企业的产品及相关信息 成都网站制作设计 国际前瞻信息安全会议 网站移动端开发公司 网络安全扫描工具 临清做网站 资阳网站建设 如何创建个人网站 营销pc端 网络市场营销策略分析报告 深圳企业网站制作报价 网络与信息安全法 美团网的营销特点 信息安全与web安全 合肥 网站建设 公安网络安全检查方案 广告营销推广 建网站 南京 免费建设网站平台 网络安全监管局 网站公告滚动显示怎么编写在jsp页面中使上下连接循环滚动 陕西省网络安全 网络安全 实施目标 公司建设网站重要性 互联网营销书籍 免费建站网站大全 重庆商城网站制作报价 网页网站 网络营销基础期末考试 信息安全材料 关于网络安全基线 网络与信息安全法 广州网站建设优化方案