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

<a class="close" href="https://fech.6590.com.cn/">&times;</a>
双线网站qq群主网络安全计算机网络安全现状及防范技术探讨网络营销怎么引流网上营销的优点缺点网络安全国际峰会网络安全威胁分析整合营销策略cigital公司网络安全周口做网站武汉网络推广营销公司排名天地初开,混沌所致,一个天之骄子,意外被打落谷底,看他如何逆修天命,掌控神术,主掌众神【系统+游戏+同人+童年回忆+爽文+升级】 王超穿越洛洛历险记世界,成为一名普通能源之城 战士,原本以为沦为炮灰的他,却觉醒无敌升级系 统。 “叮!新手大礼包领取成功,获得能源紫水晶 x1000000!” 卧槽!???你管这玩意叫新手大礼包?” 人生无常,大肠包小肠。 孟飞穿越到漫威世界,成为中城高中的一名高中生。 并且绑定签到系统,开局签到终极帝皇铠甲。 在哥伦比亚研究院签到,获得三星奖励,兔符咒。 在复仇者联盟大厦签到,获得四星奖励,镭射眼。 在联合国总部大楼签到,获得五星奖励,暗影军团。 …… 两年后,当灭霸带着他的紫薯兵团入侵地球时。 只见地平线上亮起一道耀眼的光芒……这个世界上没有无缘无故的恨,也没有无缘无故的爱。人们活在一个阴冷的世界里,见不到光明,但亲情,友情,爱情赋予了这个世界另一份情感,这个世界被称作太阳系。本书又名《我在三国强行拼团》《三国砍我,我一人砍三国》 刘云穿越到东汉,绑定附身了拼团系统,本想活命发育,偏偏黄巾起义,一个不小心还将刘备给秒杀了,不得已卷入三国时代。 刘云:“开团了,赶紧冲!来呀,砍我呀!这点兵马,砍我都不够,怎么当反派的?” 刘云:“来嘛,切磋切磋,是兄弟,就来砍我,砍一刀,一刀接一刀,完事请你喝酒。” 只见刘云一路横跳,到处强行找人拼团,势力越砍越大。 天子脖子架着刀:“刘云,你再不登基,我就砍自己了。” 掌混沌太荒之力,修真龙不灭之体,诸天万界,唯吾独尊,觉神脉,修神诀,武道之极,逆天屠神!捞尸人的禁忌有很多,可总有人不相信,说是歪门邪道。 这不,带着校花总裁下一次水,捞一次尸。 她竟非逼着我和她生猴子!此文集有散文、随笔、小说等多篇,内容丰富。其随笔纵谈人生悲欢苦辣,探讨生命及世界真谛,探幽发微,富于哲理,发人深思。其散文描摹天下至美,抒发真情挚感,很具审美感与感染力。特别需要指出的是,雪淞的文笔很具特色,优美、鲜活、细腻,轻松,令人看着很舒服、愉快。文集知识性也很丰富,作者博览群书,旁征博引,联通古今,使人在愉悦的阅读中获得很多知识。作者声明:喜欢本书的读者还可在本网站观赏作者长春雪淞的另几部作品:《无限青春无限爱》、《东方企业家》、《琵琶岛谋杀案》、《没有拆穿的谜底》、《少年维克之烦恼》、《蒋经国上海打虎》、都很好看。点作者的名字就可看到其它作品。描述大靖王朝的英雄将淮北葵花王朝所有反叛的人一一诛灭的事这是一个山海缘结,仙魔逆变的故事。 被迫遗落在尘世间的孩子,带着凡俗的认知,羁绊与名字,一步步走向修道巅峰。 他要带着红尘的枷锁,肩负着众生的希望,直面诸天仙佛。 人不为己,天诛地灭。
华为网络安全 的产品 徐州市网站开发 系统营销 精品课程网站设计 信息安全管理体系是指:,-1 西安营销型网站 周口做网站 报考互联网信息安全 网络安全国际峰会 教育部信息安全研究中心 公司破产的案例分享【www.richdady.cn】 孩子厌学的咨询技巧咨询【www.richdady.cn】 如何知道自己是否有前世缘份?咨询【www.richdady.cn】 家宅磁场对居住者的影响【www.richdady.cn】 改善脑部不清晰的方法【www.richdady.cn】 孩子压力大的原因分析咨询【www.richdady.cn】√转ihbwel 冤亲债主干扰有哪些常见症状?【微:qq383550880 】√转ihbwel 前世老婆咨询【www.richdady.cn】√转ihbwel 学习成绩差的自我提升咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世今生的修行案例威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 公司破产的后续规划【企鹅383550880】√转ihbwel 忧郁症的改运方法【企鹅383550880】√转ihbwel 脑部不清晰的生活习惯【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 纠纷的调解技巧咨询【企鹅383550880】√转ihbwel 感情纠纷的情感咨询咨询【企鹅383550880】√转ihbwel 与男友前世的前世案例咨询【企鹅383550880】√转ihbwel 解梦的方法与技巧咨询【www.richdady.cn】√转ihbwel 灵魂化解的具体步骤咨询【www.richdady.cn】√转ihbwel 意外事故对家庭的影响咨询【www.richdady.cn】√转ihbwel 如何识别冤亲债主咨询【微:qq383550880 】√转ihbwel 中国信息网络安全计划 网络安全法的主管部门 韩国政府网络安全事件 广东信息安全公司 网站三要 如何实现网络安全 中国网络信息安全 协会 中国信息安全测评中心 漏洞 定义 关于信息安全等级保护工作的实施意见 互联网信息安全资质建交友网站 武汉网络推广营销公司排名 网络营销畅销书排行榜 大型免费网站制作 宣传网站有哪些 锦州网站建设 郑州网站 微博营销效果体现 义乌 外贸网站 开发 程序员转网络安全 西安网站建设成功建设 网站制作公司 深圳 东莞高端品牌网站建设 网站建设的编程技术 中国信息安全测评中心 漏洞 定义 计算机网络安全现状及防范技术探讨 信息安全服务资质用于哪些项目 内部营销方法 河南大学生信息安全 西安全网营销 自己建站的网站 公司网络安全的通知 网站推广的好处 模板板网站 网络安全团队发展方向 南京中小企业网站制作 数据库营销网络营销学 网络安全团队发展方向 外贸营销型网站 精品课程网站设计 韩国政府网络安全事件 营销网事 2016网络安全调查报告 国家信息安全集成,-1 中国信息安全测评中心 漏洞 定义 网络安全是什么战略 东莞网站制作公司 西安营销型网站 cpc营销 网络安全法的主管部门 云平台 信息安全 深证市信息安全等级保护网 义乌 外贸网站 开发 锦州网站建设 网站设计建设 武汉 甘肃手机网站建设 高州做网站 昌图网站 宣传网站有哪些 旅游网络营销活动 北京营销型网站 网络信息安全杂志 武汉网络推广营销公司排名 供应链 信息安全的定义,-1 自己建站的网站 信息安全二级认证费用,-1 速成网站 石家庄微网站建设 如何实现网络安全 网络安全态势感知视频 个人网络信息安全事例 信息安全管理体系是指:,-1 网络营销的主要职能 flash网站欣赏 口碑营销和眼球营销 洛阳市网站建设 郑州网站 营销系统性能测试 2016网络安全(中国)论坛 速成网站 情感式营销步骤 网站制作流程图 科技金融 网络安全 烟台网站制作 西安营销型网站 周口做网站 平阳网站制作 北京营销型网站 烟台网站制作 广东信息安全公司 姜堰网网站 贵阳做网站 信息安全服务平台架构 微博营销效果体现 网络营销方法分为 后期电子邮件营销评价 网络营销途径都有哪些方面产品推广微信整合营销 深圳网站建设新闻 网络安全的隐患 网络安全团队发展方向 教育部信息安全研究中心 网站建设模板 中国网络信息安全 协会 重庆b2c网站制作 中国信息网络安全计划 信息安全实践 昌图网站 网络营销策略文章 公司网络安全的通知 网上营销的优点缺点 微博营销效果体现 网络安全的隐患 珠海网站建设 烟台网站制作 如何实现网络安全 公司网站的制作公司 外贸营销型网站 企业网络营销人员 计算机网络安全的内容不包括 电商营销公司 公司网站的制作公司 贵阳做网站 flash网站欣赏 营销要点 贵阳做网站 南京中小企业网站制作 信息安全实践 上海交大网络安全教程 优酷 报考互联网信息安全 网站设计遇到难题 信息安全管理人员 网络安全态势感知视频 网站建设前准备 徐州市网站开发 wap网站制作 创新的网站建站