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

<a class="close" href="https://ovapnm.se5g.cn/">&times;</a>
遵义做网站信息安全竞赛选题个人手机版网站建设网站中如何嵌入支付宝功能性网站北京网络营销2014中国网络安全攻防大赛网络品牌营销网站策划制作公司高端电子网站建设企业网站策划方案一块大陆上三个帝国的对抗 一次统一战争的过程 一次王朝的颓败与堕落 一次女主登临的时代 鹿死谁手,尚未可知……内心孤独的他,是黑夜里的精灵,遇到的一件件匪夷所思的事情,常常令他游走在现实与虚幻的边缘。 在他身边,一个个灵异故事正在发生着…… 黑暗最深处,有邪魔乱舞,也有人性闪光。 愿你孤身行走在黑暗之中的时候,能有人为你点上一盏灯,温暖你的心,照亮你前行!你用一生护我周全,我便护你十世无恙;这是与你相遇的第十世,也是你与我的最后一世。“三更堂?阎王让你三更死,谁敢留你到五更的三更堂?” 胖哥,先为不可胜呀,算无遗策呀,智珠在握呀。被打的吐血还在这装? 兄弟二人,美女撑腰,携酒上吟亭,满目江山列画屏。这是一场幸存者的殊死之战。也是人类信仰与正义的守卫战。游戏讲述了在疫情爆发的背景下,人类陷入生存危机中,一场关于生死存亡竞赛开始了,罗布斯、杜峰、罗恩、许安等人命运将会怎么发展?疫情突然爆发,可怕的生物接踵而至,死亡如影随形,你同所有人一样恐惧,陷入绝境。奋勇逃生,究竟是逃向了胜利?还是死亡?生存的意义是为了像行尸走肉一样活着,还是揭开真相,将希望的火炬一路传递下去,让人类的精神得以在浩瀚中永生? 命运多舛的少年,不谙世事的灵智,两者的结合在九州大陆掀起了阵阵腥风血雨。 在这里也许会看到华夏神话的延续,也许会看到超强的灵宝,也许会看到上古遗迹,也许会看到各种稀奇古怪的异兽,也许会看到魔之本相……(带修为归来,无敌+单女主+奶爸+萌娃+战斗+微搞笑+甜蜜。) 他,曾是一代雇佣兵王,后退役成为顶级杀手组织“暗暮”王牌杀手! 却不想,竟遭人算计,背叛;一番血战中,寡不敌众的他被子弹贯穿了胸膛,坠落悬崖…… 却不想,意外开启了进入天界的入口,并在机遇下获得了一部功法…… 之后,他游走于六界之内,纵横于多元宇宙之间;凌驾于天地之上,视众生灵如草芥。 纵然屠尽六界神魔,天道也奈何他不得…… 五百年后,他再度归来,却不想,此刻的他,竟有了……两个可爱的女儿?! 错了,重来…… 那纵横于多元宇宙,凌驾于天地之上的恐怖存在,摇身变成了一名……柔情奶爸! “敢欺负我女儿,定让你消失于六界之内!” “你……你到底是谁?!” “我吗?有人叫我武龙帝尊,有人叫我武龙天尊,还有人叫我混沌天帝。” “但我现在,只是一名安静的女儿奴。”从前三完大的候中指和胡曼坨,杨癫屎,霉坨坨。因为一些偶然的事件穿越到了另一个界,在那个世界他们认识了喜仔韩,檬则蒽,胡贾七。这里有小说,也有散文、诗歌,汇聚成一部有复杂情感的365个夜晚故事,请您慢慢欣赏。 2021年夏天的一个夜晚,大三学生贺晓星和哥们谢鹏程在学校教学楼的楼顶平台喝啤酒。一道闪电在天空划过,两人直接穿越到了古代大梁国的永平县。 不经意间触发的系统双人任务、5S级别的逆天不可完成任务。为了活命,大梁、双龙侦探从此踏上了一条荆棘密布的艰险之路。凭借底层的小捕快和小书吏身份,两人屡破奇案、逆风翻盘、层层晋级,眼看任务完成迫在眉睫,双龙侦探为了各自的目的却踏上了兄弟反目的不归路。 最后时刻来临,兄弟二人是选择各为其主、将相王侯还是一笑泯恩仇、再度携手?
网站空间租 2017年429网络安全日 网络安全是指通过 学信息安全 电脑 网络安全管理需要什么 大型门户网站建设 信息安全销售总监 西安 网站搭建 2016网络信息安全案例 威胁网络信息安全的软件因素 前世今生的神秘故事【www.richdady.cn】 孩子压力大的环境影响【www.richdady.cn】 大龄剩女的婚姻建议咨询【www.richdady.cn】 前世今生的轮回转世咨询【www.richdady.cn】 解梦的心理学意义【www.richdady.cn】 儿童发育倒退的原因咨询【σσЗ8З55О88О√转ihbwel 孩子不爱读书的原因有哪些?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 大龄剩女的婚恋故事【σσЗ8З55О88О√转ihbwel 感觉整天没精神怎么办【企鹅383550880】√转ihbwel 财运问题在线咨询【微:qq383550880 】√转ihbwel 前世今生的轮回传说【σσЗ8З55О88О√转ihbwel 与男友前世的咨询技巧咨询【微:qq383550880 】√转ihbwel 大龄剩女的婚恋困惑如何解决?咨询【σσЗ8З55О88О√转ihbwel 头脑混沌的原因分析【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婴灵的化解方法咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婴灵的感应现象咨询【www.richdady.cn】√转ihbwel 家宅磁场对居住者的影响咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 情感心理咨询在线威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 大龄剩女的婚恋心态如何调整?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与公婆前世的咨询技巧【微:qq383550880 】√转ihbwel 企业网站建设定制 信息安全审计管理办法 seosem病毒营销长尾理论详解 微营销企业 信息安全评测 名单 2017年429网络安全日 深圳医疗网站建设报价 信息安全销售总监 信息安全与企业 b2c网络营销模式 网络安全 资源平台 网站空间租 网络安全公司 招聘 网络社区营销名词解释广东网站建设专业公司 美国信息安全战略 重庆网络安全周 关于加强国家电子政务工程建设项目信息安全风险评估工作的通知 网站开发设计 广州网站维护 邵阳做网站 网络整合营销公司方案 单页网站 全球著名网络安全事件 信息安全三级等保方案 上海网络信息安全宣传,-1 网络营销人 2016 网络安全竞赛 工信部 网络营销人 网站的广度 建站视频教程全套 asp网站源码网页制作设计建设视频教程百度云 昆明网站建设价格低 网络营销方法有几种 成都做网站多少钱 成都做网站多少钱 关于加强国家电子政务工程建设项目信息安全风险评估工作的通知 营销系统手机多少钱 企业面临的信息安全 上海市信息安全测评中心,-1 营销策略案例 信息安全保障中心 信息安全销售总监 骗子营销 网络安全如何推广业务 网络安全法分析 大连网站制作 网络安全专科 营销科技 网站建设:翰臣科技东莞php网站开发 信息安全审计 公司 网站建设与搜索 网络安全信息安全实验室 信息安全保护条例 信息安全神话培训 信息安全审计 公司 重庆信息安全评测 网络社区营销名词解释广东网站建设专业公司 公司信息安全方法 重庆信息安全评测 美国网络安全框架 pdf 中山大学 网络安全 企业网站鉴赏 网络安全大赛致辞 信息安全三级等保方案 互动 话题 热点 营销 小米内容营销分析报告 品牌营销特征 清华信息安全方向 网络安全工程师 培训 美国信息安全战略 过度的饥饿营销 信息安全个人简历 近几年饥饿营销的案例分析 信息安全密码设置要求 信息安全评测 名单 2017国家网络安全大会 国家信息安全师 培训学校 营销系统建手机网站的平台 avast网络安全 星沙做网站 全面的苏州网站建设 国家信息安全测评信息安全服务资质证书 美国 国家网络信息安全战略 2014 最新 网络安全的核心 b2c网络营销模式 网络安全的相关资料 国家信息安全测评信息安全服务资质证书 数据信息安全审计 网络安全管理需要什么 2017 429网络安全周 数据信息安全审计 长沙手机网站建设 以下对信息安全风险 成都做网站 美国网络安全框架 pdf 网络社区营销策略 乐清网站优化推广 流行的网络安全软件 大型门户网站建设 耒阳做网站 淘营销报名 个人手机版网站建设 网络安全现状 2017 工业控制网络安全 2016 网络安全竞赛 工信部 中山大学 网络安全 北京网站开发建设 自助外贸网站制作 信息安全资产 大连网站建设 2015年6月 网络安全法 建论坛网站 顺德手机网站设计价位 网络营销功能建议 培训学校 营销系统建手机网站的平台 信息安全审计管理办法 高端电子网站建设 中国信息安全 事例 微营销企业 网站网络安全方案 学信息安全 电脑 2017年429网络安全日 长期营销策划免费注册网站 顺德手机网站设计价位 信息安全销售总监 网络营销平台调研报告 长沙手机网站建设 b2c网络营销模式 个人网站备案 中国信息安全测评中心 成立时间 信息安全服务资质查询 病毒式营销要点 信息安全事例,-1 网络安全宣传活动信息 国家信息安全师 vpn基础知识详解 三种vpn模式分析-网络安全7