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://ctj.pangqu.com.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://ctj.pangqu.com.cn/">Prev</a></li>
    <li class="active">
      <a href="https://ctj.pangqu.com.cn/">1</a>
    </li>
    <li><a href="https://ctj.pangqu.com.cn/">2</a></li>
    <li><a href="https://ctj.pangqu.com.cn/">3</a></li>
    <li><a href="https://ctj.pangqu.com.cn/">4</a></li>
    <li><a href="https://ctj.pangqu.com.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://ctj.pangqu.com.cn/">Previous</a>
  </li>
  <li>
    <a href="https://ctj.pangqu.com.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://ctj.pangqu.com.cn/">&larr; Older</a>
  </li>
  <li class="next">
    <a href="https://ctj.pangqu.com.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://ctj.pangqu.com.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://ctj.pangqu.com.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://ctj.pangqu.com.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://ctj.pangqu.com.cn/" for click events if you rather use an anchor.

<a class="close" href="https://ctj.pangqu.com.cn/">&times;</a>
信息安全人员等级划分国外的app设计网站临沂网站成都网站建设冠辰四川大学 信息安全 实验报告信息安全开发国家信息安全周时间旅游网站管理系统网络安全知识教育平台未将网络安全风险2017 网络安全生态峰会大东王朝之末,江湖纷乱,怪诞诡奇之事接二连三,天道何意,人心何向。具由一石村少年,与你结伴同行,历练江湖风雨。十年前,阿沃尔雪山的爆炸带着灯塔公司的辉煌一起进入坟墓。巴别塔公司在灯塔公司的尸骸上迅速崛起,以仿生人技术成为新兴大财团,与联邦政府携手控制25区。十年后,25区发生连环杀人案,高级督查徐一航奉命调查,却发现一切的证据指向不可能的方向,血腥的事件下是多方势力的暗流涌动,事件的真相到底能否水落石出?巴别塔公司与仿生人的命运又该何去何从? 初始之地,在宇宙大爆炸之后诞生的一个大星球,混沌时代初,混沌大神盘古出现,混沌初开,混沌时代中期,混沌大神死亡,化身为三千魔神,从此,启三千神魔大战,导致初始之地破裂为无数星球,围绕最大的星球初始之地运行,三千神魔分别占领一方星球,混沌时代末,三千神魔死亡,混沌时代结束。蛮荒时代开启,无数世界开始出现各种文明,这些世界被人们依据大小和实力强弱分为三千小世界,十八中世界,两大世界(初始之地,冥界),各世界均有产生一些顶尖强者,传说有的已经超过了三千魔神的层次,无限接近或达到了盘古大神的层次。 天玄大陆就是三千小世界中的其中一个小世界,实力巅峰时候可以排进中世界前十,出现过很多顶尖强者。 十二中世界分别是龙界,凰界,鬼界,尸界,魔界,虫界,佛界,妖界,神魔大陆,丹界以及拥有各种天火的天火大陆。如果你正在读这段话,你已经昏迷了很久了,我们不知道这段信息会出现在你梦境的哪个阶段,但我们真心希望你能看到,请赶快醒来! 总裁王杭在十一年后偶尔遇到了自己儿时的青梅竹马王媛子,可王媛子似乎因为一些事而忘记了她与王杭的事。无奈之下,王杭只能开启追求王媛子的爱情故事。月寒人醉鬓成霜,红尘若梦几千年。漫漫仙路,当剑啸万里,何惧热血染青天!默默签到十年的秦风,签到了太多的属性点。 有一天,赵高来到秦风面前,宣布他是祖龙大公子后要带他回去时,却发现他秦风的潜力太渣,当场要离开,让他继续留在这虚度一生。 这一天,秦风过去的那记忆涌现了出来,他终于知道他是谁了,他是祖龙的大公子,当初祖龙看他体质弱于常人,害怕他在皇宫被害,送在外面寄养。 这一刻,他秦风知道自己要把属性点点在什么上面了。 下一秒,他把潜力属性点点满了。 就在他等待着三天后,彻底激活潜力点时。 与此同时,天地变色。 激活金榜,金榜降世。 紧接着, 战力榜、名剑榜、剑神榜、杀手榜、组织榜,铁骑榜,统帅榜、气云榜等相继被曝光。 潜力榜第一,超凡入圣,属于大公子-秦风(原名:嬴风) 战力榜第一,九天之巅,属于大公子-秦风(原名:嬴风) 铁骑榜第一,大雪龙骑,属于大公子-秦风(原名:嬴风) 嬴政:“这就是我那体质弱的大儿子?!” 年轻一代高人气医生,被人陷害出了重大医疗事故,无奈只能回到乡下当了一名默默无闻的小村医! 不过,是金子总会发光的! 得了魔医老仙传承,一身医术出神入化,从小山村开始,名震天下!我们登上并非我们所选择的舞台,演出并非我们所演出的剧本。猎人与猎物的身份发生了变换,原有的社会体系遭受冲击。世界不复太平,战争变得随处可见。 “我只想活下去,让身边的人活得好一点。”林奕由衷祈愿。修行是一条茫茫无尽的道路,路上没有长生的喜悦,有的只是无尽的枯寂与落寞,三年前问心路上,学院问我,为何要修行,实际上我撒谎了,我只是想好好活下去,能像从前一样回到自己师父师娘身边,跟明月一起坐在清风山顶的大石头上看日出
网络营销对全球影响 网络安全工程师培训多少钱 关于进一步推进市属国有企业信息安全等级保护工作的通知 免费网站建设怎样 2016信息安全联盟大会 网络安全培训实施意见 全国网络安全信息大会 2016网络信息安全重大案例分析 网站建设案例怎么样 e春秋信息安全实验室平台 前世缘份的缘分再续咨询【www.richdady.cn】 冤亲债主对生活的影响咨询【www.richdady.cn】 不爱读书的环境影响【www.richdady.cn】 内心恐惧胆怯的自我提升【www.richdady.cn】 升迁障碍的职场策略有哪些?【www.richdady.cn】 冤亲债主干扰对生活有何影响?咨询【企鹅383550880】√转ihbwel 与女友前世的故事分析【微:qq383550880 】√转ihbwel 前世老婆的前世故事威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 去世的父亲的前世因果咨询【www.richdady.cn】√转ihbwel 投资项目的咨询技巧【σσЗ8З55О88О√转ihbwel 意外的前世缘分【σσЗ8З55О88О√转ihbwel 财运不佳的咨询技巧咨询【微:qq383550880 】√转ihbwel 与女友前世的前世案例威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 官司的心理调适【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 改善亲子关系的技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 大龄剩女的幸福指南威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 什么原因意外的前世修行咨询【企鹅383550880】√转ihbwel 如何超度婴灵?【企鹅383550880】√转ihbwel 事业不顺的职场突破【企鹅383550880】√转ihbwel 财运问题在线咨询咨询【企鹅383550880】√转ihbwel 网络安全的现状与威胁分别有 婚纱摄影网站模板 营销的概念 网络安全检测时间 互联网+信息安全,-1 旅游网站管理系统 营销推广的策划书 信息安全保护管理办法 岳阳网站建设 什么是搜索引擎营销腾讯建行企业网站 网络安全技术的体系 关于网络安全的专业 关于公司的网站设计 蘑菇街营销手段 广东省信息安全测评中心 怎么样 全网营销优点 网络信息安全演练方案 每周网络安全 网络安全战略不仅是 网站建设案例怎么样 网络营销人才供需状况 中国的网络安全防御水平 重庆南川网站制作公司电话 互联网+信息安全,-1 南通网站建设 潍坊网站托管 济南网站建设第六网建 全网营销优点 中国网络安全领导小组 16年网络安全大事件 国家信息安全师三级长沙网站托管 网络安全表格加密实验 16年网络安全大事件 网络技术网站 与信息安全管理相关的工作有 川大信息安全研究所 营销策划方案 框架 网络营销是 沈阳做网站公司 信息安全公司 排名,-1 中国的网络安全防御水平 网络安全传输 国家信息安全周时间 网站知名度 网络安全防护体系 广东省信息安全测评中心 怎么样 营销博客 生物网站建设 徐州建网站 未将网络安全风险 网站优缺点 网络安全监测设备 如何做好群营销方案 企业成功营销策略案例 php网站建设公司 网站开发 价格 网络安全技术的体系 网络信息安全演练方案 省网络安全厅 网站建设预览 外贸企业网站 营销推广的策划书 工业信息安全 沈阳做网站公司 上海网络安全局 网络安全技术开放引进 设计网站可能遇到的问题 济南学网络营销 搜索引擎营销工具 做网站书籍 江苏 信息安全技术有限公司 网站建设:中企动力 珠海网站设计费用 信息安全公司 排名,-1 武汉营销公司 网络营销具体指什么区别 社交网络信息安全事件 网站优缺点 海南网站优化 网络安全.信息安全 美国网络安全管理评估报告 临沂网络营销策划 2017 网络安全生态峰会 网络信息安全的公司 北京网络安全展 商城网站建站程序 网络安全监测设备 四川大学 信息安全 实验报告 沈阳网站建设推广 网络游戏的网络营销 信息安全方向博士论文 蘑菇街营销手段 网络营销具体指什么区别 网站模板设计 网站开发 价格 美国网络安全管理评估报告 营销博客 沈阳网站建设推广 关于网络安全的专业 e春秋信息安全实验室平台 网络安全培训实施意见 潍坊网站建设 为了保护信息安全本次删除已被禁止 婚纱摄影网站模板 网站推广策略 免费网站建设怎样 e春秋信息安全实验室平台 顺德网站设计 广州外贸网站信息 怎么取消网络安全密钥 广西 网站开发 网络安全检测时间 营销推广的策划书 网络安全应急 营销的概念 网站建设及优化 赣icp 信息安全人员等级划分 网络安全关注的问题有哪些 营销策划方案 框架 南京制作企业网站 2017网络安全日宣传 android 网络安全 旅游网站网络营销方案 哈尔滨做平台网站平台公司 顺德网站设计 我国网络安全情况汇报 网络安全表格加密实验 营销推广的策划书 南通网站建设 关于网络安全的专业 行业网络营销现状 网络安全知识教育平台 江苏+网络安全+建设 与信息安全管理相关的工作有 购物网站建设