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

<a class="close" href="https://hzqxc.1200.net.cn/">&times;</a>
小米手机网络营销目标建网站费用信息安全测试设备微博怎么做营销重庆 营销公司排名辽宁网站建设优质的营销网站建设网络安全日志审计网络安全运行北邮 信息安全 国家线“别看这样,可我喜欢他哦,问为什么的话,因为他是我的英雄呀。” “能和他在一起的话,就算世界崩坏又能怎样?” “好了,开始今天异灵部的活动吧!” “额。。学姐,我想问一下,这个异灵现象研究部是进行什么社团啊?” “是超★异灵现象研究部!” “呃呃,好的。” “吭,异灵部呢,是以进行一项伟大而神圣的活动为目的,探索过去与未来无限的奥秘,找到现实与幻想之中的交点……” “比如说” “拯救世界?” “不,比拯救世界更重要!” “哈——”男屌丝林凡意外车祸,却不料穿越异界,还未来得及高兴自己重生再世为人。却从记忆里发现自己是一个落漠家族的长子,虽天赋异禀却在17岁遭人偷袭丹田破碎武魂无法凝聚。随着脑海中一道系统提示音响起,林凡便有了称霸异界,问鼎苍穹的意志。还在YY的林凡被系统强制接受任务,悲惨的升级之路,爽翻天的称霸之路,一路美女如云……“好不容易穿越一次,你却让我输得这么彻底,焯。” 林晨骂骂咧咧的端着眼前的黑糊糊一口闷了下去。 “赶紧林小子,喝完这碗还有一堆没喝呢。” 老头咧咧嘴催促着,丝毫不在意林晨的怪异。他是弃婴他是小保安他只有二百块。他用神鬼莫测的医术活人无数,他凭一身武功历经凶险,他最终得成伟业名利双收。少年被人追杀打入深渊,生死一线之际,少年成功激发了六劫神体,度过第一劫,意外踏上修行之路。 入学府,诀亲情,战诡异,破诅咒,一劫一重天。 手持神剑,背负苍生,剑舞龙蛇,一剑可破山海,一念可动乾坤。 天地依旧在,人非事归尘,茫茫世间无一敌,神主何归去? 自上古时期,人们敬畏神灵。在千百年间,人们发现了能够吸收灵气修炼自己的方法。人们对神灵的神力逐渐轻视,甚至挑衅神灵。奈何江湖高手众多,神灵乃万物之灵,数量稀少。为了人神共存,两界巨头决定联姻计划。神界选择了龙女白小林,而人界为了驸马之位,分为两派。战争也从此打响。陈羽因误会被诸天女帝围攻陨落之后,觉醒诸天轮回系统,九世轮回显现。 举世震惊,女帝们痛哭、懊悔不已。第一世,无双女帝:师兄挖我重瞳,恨不得食肉寝皮! 轮回播放完,无双女帝哭晕:师兄,你不要离开我!原来我一直是那个被偏爱之人! 第二世,千羽女帝:这人是谁啊,太霸道,好讨厌。 轮回播放完,千羽女帝洞奔:鸣鸣鸣,我居然忘了我生命中最重要的人,为何要救我,让我去死! 第三世,红颜女帝:哼,不靠谱师傅,耽误我修行,死得好! 轮回插放完,红颜女帝大锤疯狂砸脑门:师傅,我想一直当你的徒儿,听你的话,再也不任性了! 第五世直至第九世,每一世都与神激战,震惊诸天万界。 来17K小说网阅读我的更多作品吧! 支持原创文学,支持正版阅读!原本在地球上生活的宅男陈轩穿越异世大陆,获得了一个徒儿养成系统。 “什么?这个徒弟又有大帝之资??” “啊?你要问我有多强大?别问!问就是我无敌于世间!” …… 【单女主】+【无敌流】渣男开后宫,渣女坐东宫,而我不一样,根本没对象。 凭什么别人穿越以后,都是秒天秒地秒空气的横行霸道,凭什么别人的系统都是动不动就要抹杀宿主逼着他们上进,而我的系统却要我去谈恋爱,让我放纵,逼着我和姑娘们风花雪月,我王某人把话放在这里,我就是打一辈子光棍,从今往后当一辈子魔法师,也不会去完成任何任务的,狗系统,你就死了这条心吧!现在都新世纪了,我要自由的恋爱,抵制系统,还我自由,我要自由,自由万岁。 系统:马上将会有一股阵风袭来,请宿主做好准备! 3、2、1··· 王某人捂着鼻子含糊道:算你狠。世间灵纹分紫微、太微、天市三等! 亦被分为先天、后天、传承三种! 少年被虐待而死,心有不甘催生灵纹,从此踏上仙路!
微博营销 网络安全论坛 2017 交通标识用品适合网络营销吗? 山东网络信息安全协会 上海定制网站建设公司哪家好 西安营销师 重庆 营销公司排名 上海建设网站制作 服务器信息安全防御案例,-1 电子邮件营销是指什么地方 婴灵的化解仪式【www.richdady.cn】 解梦的案例分享咨询【www.richdady.cn】 自闭症的环境影响【www.richdady.cn】 婴灵的感应现象咨询【www.richdady.cn】 缺心眼的前世因果咨询【www.richdady.cn】 与公婆前世的影响分析【企鹅383550880】√转ihbwel 升迁障碍咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 化解外灵的专业手段咨询【www.richdady.cn】√转ihbwel 不爱读书的心理调适【www.richdady.cn】√转ihbwel 祖灵的存在形式【σσЗ8З55О88О√转ihbwel 阴间生活的前世影响咨询【www.richdady.cn】√转ihbwel 前世老婆的前世影响【σσЗ8З55О88О√转ihbwel 升迁障碍的职场晋升威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 公司破产的应对策略【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 邪灵的感应现象【微:qq383550880 】√转ihbwel 邪灵的驱除仪式【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 感情纠纷的情感疏导咨询【企鹅383550880】√转ihbwel 前世缘份如何影响今生?【微:qq383550880 】√转ihbwel 升迁障碍的职场突破方法有哪些?【微:qq383550880 】√转ihbwel 前世因果化解方法咨询【微:qq383550880 】√转ihbwel 作为大学生我们应该怎么面对网络信息安全 服务器信息安全防御案例,-1 娄底网站建设 重庆 营销公司排名 企业网络营销数据 小米手机网络营销目标 武汉大学网络安全信息 国家信息安全最新政策 网络营销编辑方向 网站推广文章 企业网络信息安全公司 网络安全供应商 中山网站设计外包 手机微信网站建设 京东 网络营销部 建网站费用 重庆 营销公司排名 网络安全日志审计 衡水网站制作报价 农业网站建设 福田网站设计 信息安全与管理 营销型企业网站 微信营销软件代理网战 饥饿营销流程 熟人关系营销 中山网站设计外包 熟人关系营销 大数据信息安全安全 外贸网站设计 微博营销 信息安全 课堂 全国信息安全等级保护测评机构推荐目录,-1 全国信息安全等级保护测评机构推荐目录,-1 重庆 营销公司排名 第五届全国信息安全等级保护技术大会,-1 辽宁网站建设 武汉市大型的网站制作公司 网站改版 茂名网站建设 电影营销的方式 非常成功的营销策划 营销人物 小米网路营销目的 深圳网站制作公司 讯 中国网络安全信息小组 商务网站设计 网络安全供应商 信息安全审核员 互联网营销含义 呼和浩特网站建设 合肥网站制作需 互联网营销运作 营销 qq 大连 做 企业网站 怎么写网络营销的总结 中国联通 信息安全 网站建设改版 武汉大学网络安全信息 网络安全论坛 2017 网络安全600 企业网络信息安全公司 互联网怎么为影楼营销方案 网络公司 开发网站 无线网络信息安全 福田网站设计 中山精品网站建设策划 服务器信息安全防御案例,-1 非常成功的营销策划 白帽学院 信息安全 一体化网络与信息安全 企业电子商务网站 手机端营销 国家信息安全最新政策 作为大学生我们应该怎么面对网络信息安全 大连 做 企业网站 东莞市手机网站 微博怎么做营销 网络安全竞赛 学校信息安全上海信息安全研究所 海外营销网站建设 专业营销外包公司有哪些 网络营销策划书的撰写 保定网站建设 网站打模块 上海做网站公司 传统营销信息传播方式 珠海动态网站制作外包网络营销方案简述 网络营销工程师书籍 什么是产品的营销定位 学校信息安全上海信息安全研究所 北大 信息安全实验平台 重庆做网站 网络安全分析系统 制作网站备案幕布 做网站 长 温州建网站企业信息安全期刊 网络安全 展览 衡水网站制作报价 网络营销的理论知识 微信手机网站 山东网络信息安全协会 网络营销编辑方向 大连网站优化公司 中国网络安全信息小组 营销培训费用 张店制作网站 传统营销信息传播方式 上海建站网站的企业 郴州网站建设公司信息安全员 icp 互联网营销含义 网站左侧滚动带微信二维码的jquery在线qq客服代码 做网站多钱 东莞市手机网站 上海做网站公司 互联网营销是做什么的 做网站网络公司 互联网网络安全报告中央网络安全和信息... 北邮 信息安全 国家线 珠海品牌网站制作 工业信息安全政策体系 公司关于网站设计公司的简介 网站左侧滚动带微信二维码的jquery在线qq客服代码 电影营销的方式 网站推广文章 常见的信息安全认证有: 保定网站建设 网络安全技术与实践 微信营销软件代理网战 H5建网站 信息安全防护技术 高档网站设计 怎么写网络营销的总结 做网站资讯 网站建设创意