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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">Prev</a></li>
    <li class="active">
      <a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">1</a>
    </li>
    <li><a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">2</a></li>
    <li><a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">3</a></li>
    <li><a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">4</a></li>
    <li><a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">Previous</a>
  </li>
  <li>
    <a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">Next</a>
  </li>
</ul>

Aligned links

Alternatively, you can align each link to the sides:

<ul class="pager">
  <li class="previous">
    <a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">&larr; Older</a>
  </li>
  <li class="next">
    <a href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.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="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/" for click events if you rather use an anchor.

<a class="close" href="http://onguy.gkkhr.hhfld.o3nen.jfka.pdupdcd.cn/">&times;</a>
二次元黑暗系头像男章鱼头像.情景剧小白兔头像图片图片头像微信伤感基本头像小助手寂二次元黑暗系头像男高清微信头像孤独头像图片情景剧小白兔头像图片情侣头像可爱小孩和狗狗赵云可爱图片头像情侣头像唯美背影海边图片情景剧小白兔头像图片以动物兔子为头像的人情侣头像唯美背影海边图片高清qq动物头像赵云可爱图片头像动漫头像高清图片大全唯美dnf游戏头像图片dnf游戏头像图片多人闺蜜头像有男有女q版头像女生可爱萌草莓dnf游戏头像图片情侣头像可爱小孩和狗狗制作q版情侣头像图片大全黑执事 赛 头像2017女生头像朦胧黑执事 赛 头像制作q版情侣头像图片大全多人闺蜜头像有男有女以动物兔子为头像的人来到历史世界的叶南风,发现和自己想的不太一样。 万道皆修,妖魔横行。 没办法,先苟着吧。 竟意外绑定【儒道成神】系统。 “叮!您创作一首绝品诗,儒道修为+3年。” “叮!您创作一篇绝品词,奖励《天机宝术》。” “叮!您创作一本小说,奖励儒道至宝一件。” 本想一路苟到最强者的叶南风,偏偏被娘子安排科举,还不小心中了状元。 那日。 女帝登基。 叶南风看着女帝错愕不已。 “这不是我家娘子吗?”陈阳被困在了一个永远无法逃离的循环里,只要过了情人节的15点15分,他就会重新回到15天前。 陈阳发现他无论做什么,都无法打破这个半个月的循环,所有的一切都会重置。 在经历了震惊、刺激、狂喜、焦虑不安、绝望和痛苦等情绪后,陈阳开始各种作妖,决定把这个世界搅得天翻地覆。 陈阳开始学习各种技能和知识,利用它们去达到自己的目的,也完全不用考虑任何后果的恣意妄为,去成为世界的焦点。 尤其是针对那些为富不仁的富豪和权贵,更是让陈阳兴奋的难以自制。 直到有一天,陈阳掀翻了娱乐圈的时候,却发现循环忽然被打破了.....“不是说好成为战力顶峰天花板就可以回去了吗?!” 对于穿越,大多数人都是喜闻乐见的。 这个人已经对穿越二字烦心死了。为了回到原来的世界,洛羽枫闯过了一个又一个位面的历练,本以为位面最强就可以回到原来的世界了。但是等待他的却是下一个位面。在终于成为真正的天下无敌之后,洛羽枫终于明白了他无论如何也不可能回去了。 于是他打算随便找一个位面摆烂。 “……关于我穿越天下无敌之后,开始开宗立派摆烂这件事…………”“又是新书的开始。”王冉推开茶馆的大门,看着陌生的世界,说道。虽然他的故事从未停止......神魔乱,星落觉。在神奇的网游虚拟世界中,讲述着一位落寞青年,一往无前,披荆斩棘的逆世崛起之旅。从默默无闻,到名震万古,在恶与善,得与失之间,他会如何抉择。长生的代价是一个世界的破碎! 皇尊独子周林一心只想扑入那江湖去追寻那鲜衣怒马快意恩仇。可惜天不遂人愿今日枷锁已破,周林的剑注定劈开这四国的网。什么阴谋阴谋看我破之!这是一个全民领主的世界,只要机缘足够,不死不灭不是传说。 周焱意外穿越到这个神奇的世界,觉醒金手指,竟然能够无限进化自己的领地。 普通【兵营】进化为【铜雀台】,开局就召唤会剑术的RRR级品质貂蝉! 普通【领主水晶】进化为【王者水晶】,防御力暴增十倍,怪物打都打不动! 普通【祭坛】进化为【神秘商店】,定时刷新各种宝物,开局就有一折打折卡,装备、建筑什么的,统统不是问题。 普通【茅草屋】进化为【灵气竹屋】,修炼成仙不是梦。 “你只是最低级的白色领主,为什么会有这么可怕的英雄!” “这真的只是一个低级领主,为什么这个领地防御这么可怕。” “我的巨龙还没有到城门就被屠了,麻蛋.....别吃啊!!” “呜呜呜,我的领地竟然被一个漂亮的妹子给毁了,她说叫貂蝉。” 周焱:“虽然我只是最低级的白色领主,但是我依然吊打全世界。郭卫穿越了,成为了一品大将军的儿子,但没想到开局就因为老爹造反被砍头。 但没想到他又竟然复活了,还陷入一个几乎必死了循环之中, 郭卫好不容易脱离循环,却发现自己还要收拾便宜老爹留下的烂摊子。 不得已郭卫造出许多了玩意,补贴家用。 古往今来,世间流传仙、神的传说,而时至今日,仙路缈缈,已然进入末法时代。 天空中,有人矗立,乌云压顶、身处雷电中心;海面上,有人漫步而来,由远及近,片刻却又消失不见,这些是海市蜃楼产生的幻觉? 有传言,海市蜃楼是连接另一时空的桥梁,聚现另一个世界正在发生的景象! 神话故事是否虚构,仙、神,真的存在过吗?公子爷且看这天下,宋国虽弱,却有郭靖镇守襄阳,使外敌不敢轻易攻宋,明国虽亡,却有忠于明皇的郑氏家族虎踞台湾岛,更有明国大将袁崇焕之子袁承志,红花会的陈家洛与之遥相呼应,等待时机,意图反清复明。清国新帝康熙虽然年幼,但擒鳌拜,平三藩,已有雄霸天下之资,北方的蒙古,辽国两大帝国如今虽是两虎相争,无暇南顾,可一旦分出胜负,我等如何抵挡?还有西夏、吐蕃、新疆回部等国实力也不容小觑,公子爷再如此任意妄为下去,百姓可就要任人鱼肉了。 此时冯不醉内心正在咆哮:“该死的老天爷啊,你TM的到底给老子劈到哪了?”
无尽深渊盗墓者的惊悚奇遇 世界晋升:修罗枪神 超级王者强势归来 穿越秦朝之始皇是我兄弟 橘色年代 情到深处自然流 三国从杀敌爆装备开始崛起 王者在上之灵域之眼 剑道崛起 乌龙院之招财进宝 没有人类的世界 超凡双界 兽源史诗 龙珠之重生孙悟空 我未曾扑向光明 大明:哥,我真的不想当皇帝 逍遥公子世无双 我们有一个反鬼计划 都市至尊之修罗 最实用的穿越 背影黑色漫画图片大全女生头像女生头像带字图片 微信高清美图头像女生头像 动漫头像高清图片大全唯美 基本头像小助手寂 背影黑色漫画图片大全女生头像女生头像带字图片 头像右下角的红钻 动漫头像高清图片大全唯美 我的世界小雪头像图片 2017女生头像朦胧 带呆字的头像男生 男性头像图片眼睛 男性头像图片眼睛 卢本伟微信小丑头像 微信高清美图头像女生头像 二次元黑暗系头像男 基本头像小助手寂 小孩儿和狗狗的头像 2017女生头像朦胧 萌比小男孩头像 情景剧小白兔头像图片 微信高清美图头像女生头像 高清qq动物头像 章鱼头像. 情侣头像唯美背影海边图片 赵云可爱图片头像 卢本伟微信小丑头像 2017女生头像朦胧 章鱼头像. 萌比小男孩头像 2017女生头像朦胧 基本头像小助手寂 紫霞仙子头像语录图片 图片头像微信伤感 二次元黑暗系头像男 制作q版情侣头像图片大全 基本头像小助手寂 图片头像微信伤感 动漫头像高清图片大全唯美 卢本伟微信小丑头像 高清qq动物头像 黑执事 赛 头像 带呆字的头像男生 在线动图头像制作 小孩儿和狗狗的头像 情侣头像唯美背影海边图片 微信高清美图头像女生头像 男性头像图片眼睛 黑执事 赛 头像 卢本伟微信小丑头像 高清微信头像孤独头像图片 亚星官网 亚星官网 亚星官网 亚星官网 亚星官网 我的仙皇大叔 恶灵循环 混沌落尊 腹黑领主的奋斗日记 兽灵时代 亚星管理平台 澳门葡京官网 AG真人 亚星管理平台 万利官网 赵云可爱图片头像 情景剧小白兔头像图片 小孩儿和狗狗的头像 小孩儿和狗狗的头像 黑执事 赛 头像 基本头像小助手寂 二次元黑暗系头像男 微信高清美图头像女生头像 dnf游戏头像图片 动漫头像高清图片大全唯美 萌比小男孩头像 高清qq动物头像 紫霞仙子头像语录图片 情侣头像可爱小孩和狗狗 黑执事 赛 头像 2017女生头像朦胧 情景剧小白兔头像图片 二次元黑暗系头像男 动漫头像高清图片大全唯美 动漫头像高清图片大全唯美 图片头像微信伤感 黑执事 赛 头像 在线动图头像制作 情景剧小白兔头像图片 基本头像小助手寂 情侣头像可爱小孩和狗狗 2017女生头像朦胧 基本头像小助手寂 我的世界小雪头像图片 二次元黑暗系头像男