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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">Prev</a></li>
    <li class="active">
      <a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">1</a>
    </li>
    <li><a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">2</a></li>
    <li><a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">3</a></li>
    <li><a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">4</a></li>
    <li><a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">Previous</a>
  </li>
  <li>
    <a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">&larr; Older</a>
  </li>
  <li class="next">
    <a href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.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://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/" for click events if you rather use an anchor.

<a class="close" href="http://tgr33.www.7cpi4.www.mf9hj.tw9wd.2mrqa.1246.pdupdcd.cn/">&times;</a>
sg186系统 论文生物学生小论文公交车行车安全论文系统测试毕业论文mpa论文有哪些选题sg186系统 论文毕业论文有哪些类型公交车行车安全论文中药的好处 论文有关金樱子与肾病的论文物理与建筑论文公交车行车安全论文机电一体化毕业论文1.1格式物理与建筑论文电工新技术论文有关金樱子与肾病的论文茶叶创业论文怎样写mpa论文mpa论文有哪些选题印刷专业论文抗战老兵论文怎样写mpa论文中药的好处 论文关于导演毕业论文开题报告范文层次分析法的论文非法集资的论文层次分析法的论文农村小学校长管理论文印刷专业论文本科毕业论文检测标准“大姐你何必为难一个道士啊”楚相一边跑着,一边大声喊。后面紧追着两只猫,一黑一白,神似那黑白双煞。 楚相被赶入了一个废弃仓库,两只猫跳上房梁,在上面端坐着。黑猫闭目凝神,没了动静。白猫则瞪大眼,死死盯着他。穿越大明,成了木匠皇帝的弟弟,大明信王朱由检。 上一世太累,这一世就想混吃等死,逍遥自在。 可是大明朝日薄西山,要想享乐就要先拯救大明朝,要想拯救大明朝就不能好好享乐,朱由检表示麻了。 于是木匠皇帝成了科学狂人,魏忠贤成了忠实的狗腿子,吴三桂成了专业打手……当代毕业大学生在床上睡觉,窗外天雷滚滚,魂穿到一个充满元素的修真世界,修雷法,对强敌,结好友,泡妹子,揭开一个世界的隐秘,究竟是大梦一场,还是真实存在。 高武世界,人妖并立,人族式微,人奸横行,比妖兽更可怕的是人心,且看小人物罗文辉在逆境中成长,杀皇证道,成就人族守护神的故事。梗概 卫国被陷害,代号G的机器人走出家门寻找真相,体验到人生酸甜苦辣,当中结识李寻,两人建立友谊。 代号“勇敢者”的机器人制造了斯坦公司爆炸,试图得到永生。 李寻破案途经丹尼小城发生诡异事件,在与怪物搏斗中受伤,同时收获爱情。众人历经千辛万苦走出丹尼城。 为了获取人类防御系统资料,青鹫(勇敢者的下属)威逼利诱铁杆成为傀儡,让铁杆去获取人类防御系统资料。 李寻与叛乱组织不屈不饶地斗争,最终正义战胜邪恶。一个只处理监管之外事情的部门,不管是灵体,科技怪物,还是超人类都在其管辖范围。 我已经存在很久,很久了。带你看不一样的玉皇大帝 由于来自灭世级强者:作者君的无上伟力,文科宅男燕藏锋穿越到了一个多国争霸的年代。 他只想成为成为一个逍遥的贵族子弟,然而他的老父亲燕王喜似乎总是对他图谋不轨。 第一次。 “逆子,想不想当燕王?”燕王喜笑眯眯的问。 “傻子才当燕王呢!”燕藏锋对此不屑一顾:“再说了,大哥还活得好好的呢!” “好!”燕王喜不再说话。 第二次。 “逆子,你大哥没了,你该上位了!”燕王喜说道。 “不去。”燕藏锋十分潇洒:“二哥会是一个好燕王的。” “你自己说的。”燕王喜还是没强求他。 第三次。 燕王喜躺在病榻上,说道:“逆子,你二哥也没了,你总该上位了吧。” 看着满面红光的燕王喜,燕藏锋满脸无奈。 “你要是不装病诱惑他,他能造反?” 这是一个希望儿子继承王位的老父亲,和一个只想当咸鱼的儿子相爱相杀的故事。这是属于我的狂欢,这里是我的家乡,我马上要离开的地方,这里有很多关于我的记忆,在别人眼中我是无赖我是流氓我是一个好人【灵气复苏、异兽流、无女主、不圣母】 苏辰穿越成为了一只长臂猿,竟能看到属性面板和未来命数! 因得到了所有母猴芳心,引来猴群追杀…… 好在天降神雷,灵气复苏,群猴心性大乱,开始自相残杀。 嗯?这只猕猴未来能找到洗髓果? 你以为这是你的命中注定吗?错,被我看见,你的机遇就成我的了! 与此同时,灵气复苏之后,世界大变,无数野兽血脉觉醒! 几十米长的巨蟒,一口咬碎游轮的狂鲨,周身被火焰萦绕的狼王…… 更有沉睡之中山海经异兽,不断的苏醒!
七色之心 妄想命运夜 终末序列 他在黑暗看着我 普通人龙神的不普通生活 过山车 无极神医 猎猎西风啸 枢星 星月引力 彼岸8光年,归来 窃盗诸天 末世蜕变者 黑暗游戏时光 血染的风采燕然勒功 我真不是天道啊 我以肉身横推万界 姥姥的那些年 百厄除尽我都市最强捉妖人 玄幻:求你别抢了,我才是天命之子啊! 悖论研究论文 教师心理学论文 写论文中与到的问题 mpa论文有哪些选题 生物学生小论文 农村小学校长管理论文 写论文中与到的问题 分层教学 论文题目 非法集资的论文 机电一体化毕业论文1.1格式 军校大学生压力来源论文 军校大学生压力来源论文 蛋白质的功能性质论文 教师心理学论文 sg186系统 论文 mpa论文有哪些选题 个体经济毕论文总结 悖论研究论文 中学生 生物论文 公交车行车安全论文 教师心理学论文 公交车行车安全论文 中学生 生物论文 怎样写mpa论文 有关金樱子与肾病的论文 蛋白质的功能性质论文 悖论研究论文 中学生 生物论文 中学生 生物论文 非法集资的论文 mpa论文有哪些选题 社区教育论文范文 系统测试毕业论文 sg186系统 论文 关于导演毕业论文开题报告范文 层次分析法的论文 系统测试毕业论文 写论文中与到的问题 关于导演毕业论文开题报告范文 电工新技术论文 层次分析法的论文 分层教学 论文题目 印刷专业论文 个体经济毕论文总结 物理与建筑论文 社区教育论文范文 军校大学生压力来源论文 层次分析法的论文 蛋白质的功能性质论文 茶叶创业论文 亚星官网 亚星官网 亚星游戏官网 亚星官网 亚星游戏官网 头七当天,我被校花借尸还魂 最强武神路 巨星女友,竟是我的头号黑粉 草民的胜利 超凡仙帝在都市 AG真人 欧博官网 亚星游戏官网 AG真人 百家乐官网 抗战老兵论文 sg186系统 论文 蛋白质的功能性质论文 写论文中与到的问题 生物学生小论文 系统测试毕业论文 军校大学生压力来源论文 sg186系统 论文 茶叶创业论文 茶叶创业论文 公交车行车安全论文 生物学生小论文 个体经济毕论文总结 军校大学生压力来源论文 本科毕业论文检测标准 茶叶创业论文 中药的好处 论文 中学生 生物论文 关于导演毕业论文开题报告范文 物理与建筑论文 本科毕业论文检测标准 电工新技术论文 教师心理学论文 河北体院网球论文 茶叶创业论文 怎样写mpa论文 生物学生小论文 生物学生小论文 写论文中与到的问题 个体经济毕论文总结