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

<a class="close" href="https://prl.6590.com.cn/">&times;</a>
娃哈哈的网络营销信息安全咨询服务厂商信息安全专业教育部门户网站模板全景网络安全利用密码技术可以实现网络安全所要求的信息安全自学网网络安全 教育部 投资佛山外贸网站建设平台网络营销成功的案列一次醉酒意外,方宇重生在沧澜城废物之身,开启系统,继承前身遗志开始复仇变强……王陵穿越到魂兽横行、全球武魂觉醒的平行世界。 开局绑定外附武魂混元道宫,觉醒王者级双生武魂生灵圣火和混元神火,产生顶级武魂异像,震惊全球! 混元道宫加速时间,魂植成长速度是外界的千倍万倍! 生灵圣火与混元神火更是炼丹神物! 一举成为神级炼药师,复兴华夏炼药事业,成为世界第一! 所有人都认为他只是一名神级炼药师,毫无武力值。 直到有一天,魂兽侵袭生灵涂炭,人族危在旦夕。 王陵从天而降,手持宫殿脚踏神火,大手一挥,轻易化解了魂兽危机。 全世界才恍然大悟,将他供为神灵! 天宫宫主:“妖孽如此子,天佑我华夏!” 米国战神:“我不是他的一招之敌。” 魂兽之王:“如果不臣服于他,我就只有死路一条。” 帕特农神女:“他的炼丹之术让我望尘莫及,希望能与他‘单独’探讨炼药技术和魂植生命的起源。” 王陵:“其实我只想低调的做一名炼药师而已,但实力不允许啊!” 华夏国内务处高手冯云雷一人独战八名脚盆国天师。爱人因其而殇,悲愤刻字,为爱自刎。意外穿越平行宇宙,进入异界大陆。神器!凶兽!看九州风起云涌!星运大陆,一个修习星能量求道成仙的世界。天地混沌,世界突现神秘空间,共有九重。来自第九空间的神秘力量,困住众神,颠覆世界。魔兽横行。 一个流浪子,从此走上了,修习星能量,拯救众神,使世界重新恢复和平的道路。龙神之子龙熠被留在下界,面对悲惨的命运,龙熠又该如何面对?《摩觉》原名为《千古纪法》,一个励志除魔卫道的故事。故事基于现实与虚构的结合,有天马行空,也有实事求是,更有意想不到。故事也向许多的武侠小说经典之作致敬,力求精彩而又完整,一部武者之道的新作送给大家。天才古枫,惨遭敌人挖仙王骨、打碎丹田,成为废物。 父母的棺材也被敌人挖了出来! 他在绝望中觉醒荒古圣体,获得荒古天君的传承。 他执掌天剑,抗衡视他为敌的天道,一步一步登顶世界之巅,达到与天道并肩的无上境界。 古枫:既然天要杀我,那我就要屠天……证帝!!!神秘而特殊的力量因一次偶然降临到一个人身上,千百年后,这股力量随着血脉流传至现代。普通的十七岁少年陆云汐,在亲眼目睹这个世界的真相后,决定像前辈一样,拿起刀枪,在与黑暗势力作斗争的过程中明白了生命的意义与自己肩上的责任,最终在付出巨大的代价后成功守卫了人类的未来。这个世界文道为尊,文人掌文箓,修文气,开文宫。 九品开窍文箓,一目十行,身轻体健。 八品修身文箓,文字加身,如有神助。 七品仁者文箓…… “诗词歌赋,笔墨丹青,棋艺话本这些你都懂?” “略懂略懂。” “都懂一点也行。” “是亿点点……” 官居一品,权倾朝野? 封王拜相,永享荣华? 不不不,身怀国家图书馆全部资料的李长安,无奈接受了,世人把他名字刻进圣庙的事实。 一个经营着普通酒馆酒吧的吸血鬼伯爵,在朋友的影响下,知道了城市、村庄、等,更多异类的消息,知道了世间不止吸血鬼,不止与自己敌对的狼人,经还有那么多妖、人、鬼、怪,了解了更多的更多关于身世的消息,了解身世,获得秘宝,弱水三千,最终只取一瓢。
北方明珠网站建设 营销的图片 石家庄网站优化公司 asp网站运行时浏览器兼容模式为什么显示不了商品图片?极速模式可以 重庆微信网络营销推广 建网站首页图片哪里找 移动应用营销 建网站首页图片哪里找 厦门市信息安全等级保护备案 江阴网站建设 头脑混沌的生活习惯咨询【www.richdady.cn】 感情纠纷的情感修复【www.richdady.cn】 通灵与心理学结合咨询【www.richdady.cn】 头脑混沌的解决方法【www.richdady.cn】 为什么过世的前世解析【www.richdady.cn】 发育倒退的医学检查【σσЗ8З55О88О√转ihbwel 官司咨询【微:qq383550880 】√转ihbwel 亲子关系改善建议威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 冤亲债主对生活的影响咨询【www.richdady.cn】√转ihbwel 亲子关系的心理建设咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子不爱读书的应对策略咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婚姻生活不顺的案例分享【www.richdady.cn】√转ihbwel 冤亲债主化解咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 去世的母亲在哪【企鹅383550880】√转ihbwel 前世因果化解方法咨询【微:qq383550880 】√转ihbwel 前世今生的轮回解析咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的前世今生【σσЗ8З55О88О√转ihbwel 耳鸣的心理调适【σσЗ8З55О88О√转ihbwel 心特别累的环境影响【σσЗ8З55О88О√转ihbwel 冤亲债主干扰的根源是什么?【www.richdady.cn】√转ihbwel 网络安全2017的大事件 网站没流量 信息安全自学网 中山网站制 关于网络安全的建议 分类营销企业网站首页布局尺寸 网络安全与信息间是 网站制作及排名优化 信息安全技术的定义 网络安全交流会 温州微网站制作公司推荐 信息安全在重庆怎么样 嘉兴 网站制作 网络营销手机软件 利用密码技术可以实现网络安全所要求的 税务系统信息安全基本要求 石家庄网站设计制作服务 国家信息安全一级资质 营销教程 芜湖网站制作 国家网络安全月 温州微网站制作公司推荐 国家信息安全一级资质 北京网站制作排名 国家信息安全中心举报,-1 苏州网站建设logo 国家信息安全中心举报,-1 公安部网络安全考核 中小型企业网络安全 北方明珠网站建设 装饰网站建设 简述网络营销特点是什么 杭州网络安全公司 地址 大连建网站公司 广州建外贸网站 成都网站制作公司 大连建网站公司 网络安全2017的大事件 娃哈哈的网络营销 嘉兴的网站设计公司有哪些 中国网络安全年会 2016 网站没流量 网络营销的缺点有哪些 苏州企业网站建 中华人民共和国计算机信息安全保护条例 信息安全自学网 病毒营销经典案例分析 上海 网络安全公司 局域网的网络安全 中山网站制 国家注册信息安全员 信息安全专业教育部 信息安全产品 等级 关于网络安全的建议 厦门市信息安全等级保护备案 网站的风格 速卖通如何做营销策略 分类营销企业网站首页布局尺寸 中国人为网络安全事件 206 网络营销考试卷 南宁制作营销型网站合作网站登录制作 网络安全与信息间是 中山网站制 建网站首页图片哪里找 中国邮箱营销edm 网站制作及排名优化 服装外贸网站建设 深信服 国家信息安全测评信息安全服务资质 安全工程 珠海网站设计多少钱 信息安全技术的定义 苏州企业网站建 国家网络安全小组成员 合肥 信息安全 网络安全交流会 外链发原创文章那这原创文章是属于我网站原创还是外链网站原创? 南宁信息安全测评中心 北京高端网站设计外包公司 温州微网站制作公司推荐 青岛网站建设找 电力信息系统信息安全检查规范 网络安全2017的大事件 信息安全在重庆怎么样 青岛市网络安全办公室 戴尔网络营销的关键 微网站建设方案 嘉兴 网站制作 网络营销的分销渠道 杭州网络安全公司 地址 中型网站 网络营销手机软件 信息安全自学网 企业网站管理系统 公司网络安全重大事件 利用密码技术可以实现网络安全所要求的 信息安全在重庆怎么样 成都公司建网站 全景网络安全 税务系统信息安全基本要求 信息安全测试资质证书 美国网络安全信息共享法案 中国网络安全大会乌镇 石家庄网站设计制作服务 南宁信息安全测评中心 信息安全测试资质证书 欧洲网络信息安全局 长沙手机网站开发 保护信息安全最基础 最核心的技术是 网络信息安全考试 全景网络安全 国家网络安全月 佛山做网站建设 营销的图片 网络安全与技术 大连企业做网站 山西网站制作公司 速卖通如何做营销策略 营销推广服务 工信部 网络安全 处 网站创建公司网站 网站红蓝色配色分析 内网信息安全解决方案,-1 青岛网站建设找 病毒营销经典案例分析 河南信息安全公司排名 网络信息安全测评企业 欧洲网络信息安全局 商务型网站模板 网站建设仪器配置表 B2B网站系统西安网站推广 门户网站的功能 网络信息安全通知 信息安全等保认证 大型企业 网络安全 网络营销手机软件 中国人为网络安全事件