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

<a class="close" href="https://tm85vv.vetpc.cn/">&times;</a>
网络安全.需要哪些技术网站设计模板免费建站病毒性营销的实例推广 营销 论坛信息安全保密技术,-1自建网站互助网站制作公司广州网络信息安全测评中心,-1宁波网站设计专业网络营销联系电话 神所在的地方那是天空的边际。但真的有神存在吗?谁都不清楚。修真为了什么?只是长生不老,还是到达顶峰?那又如何?脚下的路被杀戮染红难道自己的道就是一条血路?我要去改变这一切的一切,用新的的法则让每个人都有公平的路,而绝对不是杀戮。天生绝品丹脉却一夜散尽,从家族明珠一朝变成弃子,成为一名小小的种药工,依旧无法置身事外。 遂跃于凡尘,种药炼神丹,炼体为炉鼎,活脱脱将自己炼成了绝世的神丹。 本人是新人作者,有什么写的不对的地方望各位读者多多包涵尝试按心中合理的写法写写看会出来什么东西。在小时候,父母因为一场车祸意外去世,性格内向的陈阳在读完书后当起了一位网文作者。 相亲失败的那天,陈阳情绪失落地回家,却发现自己小说中的女主竟然跑出来了!   全球人类降临异域。   每人皆会继承一座宗门。   发展宗门,培养弟子,顺便斩妖除魔,还此方世界一片人道乐土。   此方世界,资源并不丰裕,再加之宗门如星辰般密集,所以各宗门宗主获取修炼资源的难度极大。   但李纯在降临异域的同时获得了授予弟子万倍返还系统。   授予弟子什么,系统皆会以一定倍率返还。   【叮,您授予弟子一枚筑基丹,万倍返还您一万枚筑基丹!】   【叮,您授予弟子一柄黄品上阶斩灵剑,万倍返还您一柄天品武器大道升龙剑!】   凭着万倍返还系统,李纯将其创立的人教推至了万界巅峰。   古典玄幻与元宇宙世界的激情碰撞! 玄幻世界的文明参与者与执掌生杀予夺的文明创造者终将一战! 干预文明进程的维序者 洞悉文明规划的观察者 创造文明世界的架构师 微光中寻找文明真相的觉醒者 谁,能在683号实验宇宙的轮回中,解开真正的文明密码。 有悬疑奇案、有阴谋乱国、有英雄史诗、有儿女情长,我且细细讲,君且慢慢听。欢迎小扑街道友入群,道友们请使劲蹂躏他。 羽族圣尊:“新人爆照,长得好看的话,送你几个大毛妞。” 羽族和人族的欣赏水平都差不多,都认为毛多的好看。 墨麒麟圣尊:“新人爆照、爆照。” 一连串的消息提示消散在一部破旧的国产手机中。 …… 本书群号:1031029416异世大陆,强者为尊。 少年陆泽惨遭背叛,却意外获得无上神功,从此龙游苍穹,鹰翱九霄。 杀圣子,灭天骄,夺造化,逆天改命,强势崛起! 一步一登天! 一路披荆斩棘,一剑破万法! 高歌猛进,无所不克,一直走到巅峰。亲人离我而去,我从牛马蝇螟到一人之下,从微末之间到庙堂之上,从武斗到兵斗,再从兵斗到政斗,我战胜一切,却毫无收获,亲人留给我的是什么?我该如何拯救这一切,包括我自己?
EDM邮件营销 网络安全实际案例分析 营销在线 网络安全.需要哪些技术 网络安全和计算机安全 宁波网站设计 医院网站建设方案 网络营销工具分为沟通类和什么 织梦网站图片代码 网站建设公司平台 公司破产后的员工安置问题【www.richdady.cn】 内心恐惧胆怯的前世影响咨询【www.richdady.cn】 纠纷的原因分析【www.richdady.cn】 公司破产咨询【www.richdady.cn】 儿子抑郁症的症状与诊断【www.richdady.cn】 “缺心眼”对人际交往的影响【σσЗ8З55О88О√转ihbwel 冤亲债主的干扰与化解【企鹅383550880】√转ihbwel 升迁障碍的职场瓶颈如何突破?咨询【www.richdady.cn】√转ihbwel 孩子不爱读书的阅读计划【www.richdady.cn】√转ihbwel 发育倒退的原因分析咨询【www.richdady.cn】√转ihbwel 心慌胸闷头晕的咨询技巧咨询【www.richdady.cn】√转ihbwel 解梦的案例分享【σσЗ8З55О88О√转ihbwel 事业不顺的解决之道威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 失业的应对方法【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世今生咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 有官司的自我保护咨询【www.richdady.cn】√转ihbwel 工作升迁的障碍与突破咨询【企鹅383550880】√转ihbwel 亲子关系的教育策略有哪些?【微:qq383550880 】√转ihbwel 事业不顺的真实案例有哪些?【微:qq383550880 】√转ihbwel 升迁障碍的职场策略咨询【σσЗ8З55О88О√转ihbwel 互助网站制作公司 武汉 网站设计公司 网络信息安全防范技术研究 医院网站建设解决方案 北京信息安全学院 网络安全和计算机安全 网站主题制作 全面解读网络安全发 营销重要性 营销邮件免费模板下载 电子邮件营销文本 选择微博营销的原因 网络安全咨询服务方案 珠海企业集团网站建设 网站到期了 太原网站建设需要多少钱 网络信息安全认证证书 网站开发费用报价单 2014 网络安全事件 网站开发费用报价单 网站模板的好处 中山做网站的公司 西安网站建设平台 网站换模板 病毒性营销的实例 专业网络营销联系电话 福州seo营销 高特效网站 网站到期了 烟草行业信息安全解决方案 大型的营销型网站建设 网络营销实训课程ppt 中英文网站设计 做门的网站建设 信息安全的漏洞 活动营销推广 做门的网站建设 数据可视化网站 福州建网站 做网页 网络信息安全防范技术研究 网店营销计划模块 医院信息安全解决方案 付费营销 长沙网站优化公司 网络安全 请示 外部营销 网络信息安全 博客 网络安全师证书 武汉 网站设计公司 网络安全实际案例分析 网络安全企业50强 宣传型网站 网站到期了 网站挣钱网 网站的层级 怎么微博营销推广 外贸网站制作 房地产饥饿营销策略 网络信息安全攻防大赛 外贸网站制作 网络安全实际案例分析 网络广告营销策划方案 2016中国网络安全事件 计算机信息安全 网络安全问题ppt 网络安全法 执法协助 合肥整合营销平台 网络安全和计算机安全 桌面端的信息安全 黑产 网络安全企业 长沙网站优化公司 怎么做好一个网站 太原网站建设需要多少钱 珠海营销型网站 网络信息安全最新技术 大良营销网站建设好么 广告全网营销策划亚信网络安全产业技术研究院 简述网营销的优势 网络安全展门票 广州网络信息安全测评中心,-1 广东做网站 织梦网站图片代码 网站没收录 单位信息安全等级保护工作部署情况 怎么微博营销推广 合肥整合营销平台 网络营销降低成本 中英文网站设计 医院网站建设解决方案 福州建网站 做网页 福州seo营销 医院网站建设解决方案 isp认证 网络信息安全证书 山西信息安全 深圳网站建设服务公司中国网络安全对抗 营销重要性 网站推广的目的 2017网络安全会 日程 网站模板的好处 珠海企业集团网站建设 枣庄网站优化 河北手机网站制作企业 大良营销网站建设好么 网络安全指标监控/感知 问答营销的成功案例 西安网站建设平台 原生营销定义 小米手机网络营销推广方案 北京信息安全学院 信息安全实验室研究方向 公司网络安全培训 付费营销 校园网络安全概述 四川大学信息安全研究所 微信公众号市场营销方案 武汉 网站设计公司 python. 信息安全 网站模板的好处 还有网站吗 联想电脑网络营销 营销型网站效果不好 佛山学校网站建设 网红 网络营销 选择微博营销的原因 中国信息安全的法律法规 深圳电商营销策划公司排名 四川大学信息安全研究所 网络信息安全认证证书 网络安全预算 互联网金融 网络安全 滕州网站优化 国家网络安全标准 网络营销网站推广 网站建设公司平台 房地产饥饿营销策略