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

<a class="close" href="https://5vizdxh.hehu.net.cn/">&times;</a>
家电+营销罗湖网站设计美国网络安全信息共享广州的服装网站建设网络安全实验室脚本关信息安全备案信息安全论文1500罗湖网站设计川大网络安全空间学院阳光网络安全资料我的红颜知己,倾国倾城! 我的后台靠山,权势无边! 我的武功医术,举世无双! 前信 大家好!我是作者李越定!今天是5月27日!我今天还是下定决心发布这部民间自创小说!这部小说的内容灵感来源于现实,我不能说明这个千凡是现实中的原型是谁!本小说可能是我刚写小说导致!怪怪的!本小说的故事主要是以主人公以出狱后的主线故事为主!因为我想人总是会S的干脆把主角写死了由儿子替代!一些人物来源也现实中的人!因为呀这个小说是以现实主义开始!其中小波的名字来源于我认识的一个朋友的名字!好了!这部小说好不好看没关系!主要是大家能看到我的作品好了! 自己练笔随笔安放之处你有经历过人生的大起大落,大悲大喜吗?你能接受这样的狗屁现实吗? 巅峰时的锋芒毕露成为将你打入低谷的力量,意外夺走你在这个世界最后的温馨。 “你只要拯救了那个世界便能够拯救你的父母和挚友,不过那并非是游戏,而是真实,你在那里死去会真的死去,包括拯救失败。并且你无法回到这个世界,这样你还要去吗?” “他们是因我而死的,他们也是我在这个世界唯一存在的理由,所以无论是为了我还是他们,我都必须去。” 脱胎,换骨,洗髓,锻体,炼器,聚灵,称王,封帝,入圣,圣。在这些严格的等级制度下,或许人命只如草芥,强者独尊。 不管这个世界的人有多强,我也会为了你们成为这片天地的剑圣。 “姑娘,可否给小生二文铜钱?” “我乃大永王朝户部侍郎之子,岂会骗你?” “忒!你个臭乞丐,倒是学的有模有样。” “姑娘,别走啊!我还有一事相求。” 神延大陆中央有一座没有山顶的大山,传说登顶这座山峰的人就算是凡人也能立地成仙。天道峰直指天道,所谓登峰造极登峰便是一条成仙的捷径,亘古至今,成仙者不计其数,但却无一人登上峰顶。天道峰到底通往哪里?仙界?神界?还是永恒? 唐皇国边陲山村小村民郭旬机缘之下得到一颗渡劫成功的天仙内丹,从此踏上不凡之路,为了追求永恒,他踏上了攀登天道峰的道路,成仙成魔尽在一念之间!吾一人踏路,天道路漫漫,怀赤子之心,追寻飘渺永恒,翻千山不停,越万界不止,吾心依然。王宇是名从未被编辑签约过的网络作者,灰心失意下重开了小说,竟然成为了新一代的神,没等他享受成神的待遇,竟意外进入了他之前写的一本小说中,成为了主角!*****《流浪在仙界》的有声图书已经在喜马拉雅上架了,多谢各位多去关注。*****百里长青穿越到仙界后发现:地球的心法远不如仙界的功法,但地球的武技却远高于仙界的武技。 汉武帝以:“侠者,以武犯禁”为借口,将江湖上的大部分武林高手围剿斩杀。百里长青(原名郭解)和他的八个兄弟,四个婢女,七个徒弟,还有五千个生死兄弟,在卫青大将军的十万大军合围后,全部万箭射杀,最后被仙界大佬救下灵魂穿越到仙界的凡人界,要求他们去仙界完成一个非常重要的任务。 百里长青带着他的兄弟和徒弟在仙界杀进凡人界,仙人界,神界等一个又一个的大陆,破解一个又一个的惊天阴谋,最终尘埃落定! 三世为人,穿越到仙界后百里长青一切看淡,性格大变,游戏风尘,风趣幽默尽在本书中。 这个世界,有妖邪,有邪灵,有儒士,有巫士,也有驱魔人。 在云州只担心妖魔吃人,而这上京,完全是一个吃人都不吐骨头的地方。 5年后的梁万里终于选择进京,发现这个世界比他原本想象的还要复杂。孤儿周肖敏,再一次捕猎中获得了一个神奇的玉佩,活得机缘,探寻圣迹,终成神明
山东省信息网络安全协会是骗人的吗 蓝色网站 linux网络安全技术 小网站推广 苏州网站维护 有关网络安全的内容网络安全与应急管理 网站设计学习 新闻营销稿全网营销型网站 美国信息安全排名 唐山做网站 升迁障碍的原因分析【www.richdady.cn】 大龄剩女的婚恋心态【www.richdady.cn】 长期耳鸣可能是哪些疾病的信号【www.richdady.cn】 暗恋的案例分享【www.richdady.cn】 前世老婆的前世解析【www.richdady.cn】 如何避免无形干扰因素咨询【σσЗ8З55О88О√转ihbwel 孩子厌学的咨询技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 提高孩子阅读兴趣的方法【σσЗ8З55О88О√转ihbwel 失业的心理调适【www.richdady.cn】√转ihbwel 孩子学习不好的案例分享咨询【www.richdady.cn】√转ihbwel 前世缘份的前世缘分【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 感情纠纷的情感沟通方法有哪些?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 公司破产的案例分享咨询【微:qq383550880 】√转ihbwel 什么原因意外的前世缘分咨询【企鹅383550880】√转ihbwel 不爱读书的自我提升【企鹅383550880】√转ihbwel 灵魂种子治疗咨询【企鹅383550880】√转ihbwel 如何超度婴灵?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 冤亲债主干扰的案例有哪些?咨询【σσЗ8З55О88О√转ihbwel 公司破产的前世记忆咨询【σσЗ8З55О88О√转ihbwel 精神不振的原因分析【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 电商网站规划 工信部网站备案 怎么获得网络安全资质 菏泽做网站 川大网络安全空间学院 网站设计学习 保定市网站建设 网络安全网络文明 大网站建设 网络安全响应机制 网站名注册 信息安全设计 自助建站网站建设 文件信息安全,-1 b2c网站建设 新闻营销稿全网营销型网站 形象型网站 长沙微信营销武汉免费网站制作 美国网络安全信息共享 重庆网站平台建设 网络安全设备分类 公安部网络安全局官网 太原网站建设需要多少钱 精站邮件营销专家 微信营销目的是什么意思 网络与信息安全通报机制 信息安全 自动化运维 陕西信息安全管理体系 信息型网站 建网站软件富阳市网站 印度的信息安全 社会媒体营销的方法国内ui网站有哪些 网络安全包括系统安全和信息安全 长沙微信营销武汉免费网站制作 传统营销 大学生网络安全 关于网络营销策略研究报告 外贸网站模板建立 广告营销 网站版面设计 2016年中国网络安全发展形势展望 微网站域名 病毒营销公式 信息安全 讲座 信息安全产品销售,-1 网络安全教学平台 网站备案后 网站开发的缺点 广州的服装网站建设 网络安全专家委员会 罗湖网站设计 地方门户网站制作 企业信息安全培训内容 海口做网站 网络安全专家委员会 唐山做网站 网站建设成都公司 淄博网站优化首选公司 唐山做网站 哪家网站建设好 网站设计学习 免费网站注册永久 信息安全产品厂家,-1 山东大良网站建设 信息安全论文1500 印度的信息安全 汕头网站建设公司 网络安全基础的rsa的全称是什么 东营做网站 中国信息安全测评中心广东测评中心 家电+营销 电商网站规划 信息安全保护等级 国标 网络营销培训资料 摄影网站制作 信息安全条例 确定 保定市网站建设 网络营销定价 银行业 信息安全事件 上海高端网站建设 2014 网络安全 事件 网络与信息安全通报机制 网络安全教学平台 网络安全现状调研报告 形象型网站 川大网络安全空间学院 网络与信息安全通报机制 未然蔚然网络营销资讯 大学生网络安全 国家信息安全等级第二级保护制度 网络安全产品名字 2014 网络安全 事件 医疗网站设计 创新的南昌网站制作 哪家网站建设好 中央网络信息安全小组,-1 合肥 网站建设 常州微网站建设 网络安全包括系统安全和信息安全 搜索再营销 信息安全评估的作用 网站优化过度的表现 企业网站建设运营 临沂网站制作 b2c网站建设 小网站推广 网络安全企业协会 网站空间 什么平台进行问答营销 微网站页面 信息安全的基本要求是 网站制作软件 保障国家网络安全 自助建站网站建设 网络营销定价 信息安全管理体系审核 银川建网站 网络安全法正式施行 泰合信息安全运营中心系统-日志审计 提供常州网站推广 中国信息安全测评中心广东测评中心 天津理工信息安全课程 提供常州网站推广 保障国家网络安全 微网站域名 国家网络安全周专题 怎么获得网络安全资质 形象型网站 网络安全监测预警 网络安全监测预警系统 自建网站平台的页面功能 可信网络安全平台 禁用多网卡 太原网站建设需要多少钱 工信部网站备案 电子政务网络安全研究