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

<a class="close" href="https://8avb.zhenchan.com.cn/">&times;</a>
常州微网站建设中国信息安全测评中心笔试天津理工信息安全电子商务网站建设的概要设计信息安全运维服务内容大馆陶网站专业网络安全公司网络营销创业020网站系统常州微网站人只有在失去时,才懂得珍惜。 前世萧辰因为沉迷赌博,导致家破人亡,妻子自杀,女儿走丢。 等到再找到女儿时,已经是一具冰冷的尸体。 “她本来可以不死的……但她一个人长大真的太不容易了,16岁便患了肾衰竭,她需要换一颗肾,只有你可以救他,但常年酗酒你的肾早就坏了,救不了她!” “她现在才18岁,还没交个男朋友……为什么先死的不是你!” 在好友的痛斥中,萧辰悲痛欲绝,昏死过去。 还好上天给了萧辰一个重来的机会。 当他再度睁开眼睛时,竟然发现自己穿越回了妻子自杀的前一天。 于是他决定洗心革面,用一生的时间来弥补自己前世的过错,让自己老婆和女儿过上最好最幸福的生活。 他贺不凡只是一个苦命的孩子,被父亲囚禁在井底两年,最终逃不过被打断全身筋骨的命运, 本来他已经绝望趴在母亲的坟头想一起去了,没想到母亲的坟头愣是被他用泪水浇灌出一株黄豆来, 在母亲的指引下他吃了下了豆子,却给他带来了无穷的力量 莫欺少年,且看他斗老爹,逆风翻盘,创建仙道!孟婆说我在阳间的寿命没超过24小时,不给予办理投胎业务。 而我当了十八年的鬼,终于等来家里给我烧了一间小卖部。 我意外发现这件小卖部通阳间,可以从阳间进货,拿到阴间来卖。 从此以后我便就做起了阴阳两界的生意,叱咤阴间。 和乔老爷一起卖手机,和扣比一起打篮球,但阎王竟然不要我投胎?都市文的天花板,即将迎来发行日本书描写了葛二两跟师父须菩提学了三十六般变化和高超的武功,携孙悟空、猪八戒、关羽关云长穿越到亘古洪荒的年代,帮助蚩尤和黄帝争夺天下的故事。飘渺大陆是一个灵气充沛的世界,在这里,修炼者无处不在,也无所不能。 灵丹、武技、功法、秘术、这些都是修炼者一生追求的梦。 其中,被誉为天地葵宝的八系灵珠更是天下人必争之物。 **很唐突的就穿越到了这个世界,天选之人往往都是有着上天眷顾的光环。 在一次生死逃亡之下,他无意掉入了一座古老的墓穴之中,没有意外的就得到了符文铁卷,从此,他的黑色怒瞳成为了许多人挥之不去的梦魇! “霸决!” “残决!” “杀决!” “毁灭能量丸!” “千盘吸手!” “大崩裂术!” 一道道凶猛无匹的武技摧毁了一切敢于与他叫嚣之人,世人见他无不顶礼膜拜。 挚爱之人永远离他而去,心脉精血狂撒的那一刻开始,他的一头青丝骤然变成了沧桑的银白色。 坐在雪峰之上守候着那个曾经的约定,黑色的怒瞳成为了这个时代最引人争议的标志。 “重新开始也未必办不到,就让我重新塑造这个世界吧,一切的轮回皆由我执掌……” 穿越神灵大陆后,林不凡被迫下嫁给一头母老虎,还是一头动不动以死相逼的冷傲暴力母老虎。 面对即将到来的家暴日子,这让林不凡感到很绝望。 幸好,神级选择系统成功激活。 穿越这事没得选,但要下嫁暴力母老虎,林不凡决定做一个以理服人的有为之人。 “叮!感知到宿主诚挚叫大爷,神级选择系统激活。” “选择:强行亲她,奖励至尊道体、太古神诀。” 婚礼现场。 “选择:怒怼万族来宾,奖励百年修为、破妄之眼、太上炼丹术、涅槃真丹。” 林不凡答应……还是拒绝呢? 答应是作死,拒绝貌似不能够。 于是…… 末日来袭,地球上的植物与水源全部枯竭衰败。 世界陷入恐慌,秩序与人性崩碎。 食物与生存,再次成为新世纪之后人们最关心的话题。 米面成为奢侈品,唯有富豪才能享用,菜蔬更是身价暴涨万倍,有价无市! 然而就在此时,有人捡到了一部手机,偶然打开之后,手机内的视频令世界震惊。 甘甜的菜蔬滚入火锅之中,散发着诱人的绿色! 烤的金黄的羊腿滋滋冒油,沾上芝麻般的孜然! 鲜美的鱼汤炖的宛若牛奶一般纯白,撒上翠绿的葱花! 饭桌旁,一名粉雕玉琢的小女孩咬掉半颗草莓,哀求道:哥,我真的吃不下了!! 帮助美女上司摆脱陷害的黄非凡,成为公司派系斗争的棋子,被上司排挤到养殖场。 本就事业不顺,女友这时又跟着出轨,让黄非凡彻底跌入低谷,从事业到爱情遭受双重打击。 不过因为一次善举,让黄非凡彻底改变命运,开始时来运转,一路攀升。 最终从一个人人瞧不上的草根,成为众人逢迎巴结的大鳄! 且看职场小白黄非凡不寻常的崛起之路!我和几个兄弟喝醉后醒来竟然穿越到别的世界,真尼玛离谱
中国 信息安全 法规 北京信息安全中心 云网站功能 利用qq群做营销的缺点 网络安全审计公司 青岛日文网站制作 国家网络安全信息周 国家信息安全管理的主要规定包括,-1 什么是网络营销沟通 网站面包屑导航设计即位置导航 阴间生活的前世案例【www.richdady.cn】 灵性成长工作坊【www.richdady.cn】 耳鸣的环境影响咨询【www.richdady.cn】 前世缘份的解读方法【www.richdady.cn】 冤亲债主的干扰与解脱【www.richdady.cn】 自闭症的症状与诊断咨询【企鹅383550880】√转ihbwel 亲子关系的教育建议【微:qq383550880 】√转ihbwel 暗恋的解决方法【企鹅383550880】√转ihbwel 与男友前世的故事分析咨询【微:qq383550880 】√转ihbwel 孩子厌学的咨询技巧咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 与男友前世咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 特殊学校的教学方法咨询【σσЗ8З55О88О√转ihbwel 冤亲债主的干扰案例咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 头脑混沌的前世记忆咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 事业不顺的前世因果【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 自闭症的咨询技巧咨询【σσЗ8З55О88О√转ihbwel 有官司的法律援助咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 大龄剩女的前世记忆【www.richdady.cn】√转ihbwel 忧郁症的前世记忆【www.richdady.cn】√转ihbwel 投资项目的选择方法咨询【σσЗ8З55О88О√转ihbwel 国家信息安全管理的主要规定包括,-1 学网络营销费用 石家庄做网站 信息安全 周报 武汉网站开发公司 提供邢台网站优化 网站建设计划书 银川建网站 网站面包屑导航设计即位置导航 上海简约网站建设公司 国际网络安全期刊 微信小程序做网站 南通网站建设设计 信息安全定级 网站建设哪家公司好 成都 网络安全 工作 网御网络安全管理系统v3.0 扬中网站建设 网络安全 数据统计 政府网络安全现状分析 北京信息安全中心 哈尔滨网站建设市场分析 网络信息安全日 科大信息安全专业 佛山手机网站建设优化 信息安全技术 web应用安全扫描产品安全技术要求 四川开设信息安全专业吗 广州学网络营销哪里好利用互联网营销的例子 做网站工具 网络营销的策略 网站沙盒期 中国信息安全测评中心笔试 自己创造网站平台 中国 信息安全 法规 常用的信息安全技术""是哪几种?" 信息安全平台作业 网络营销方面做的比较好的企业(产品)的一个经典案例ppt 网络安全报警电话 广东网络信息安全基地 网站制作软件 国家信息安全管理的主要规定包括,-1 网络营销策划方案案例 网络合作分享营销 王老吉营销方案分析 推广与营销 北京微信网站制作 企业 基于tcp/ip安全体系和网络与信息安全理设计安全方案 开展网络安全认证 检测 风险评估等活动 网站设计公司电话 云南网站推广 营销模式饥饿营销 增城做网站 微信网站开发 网络安全大会2015 网络安全管理员 证书 网络营销方面做的比较好的企业(产品)的一个经典案例ppt 门户网站有哪些 网络安全公司起名 属于信息安全产品的有 专业网络安全公司 深圳html5网站建设 属于信息安全产品的有 增城做网站 网站建设计划书 网络分享性网站 中国信息安全测评中心笔试 营销型网站建设 监控网络安全方案 银川建网站 定制网站 深圳全网整合营销 电子商务网站功能页面 北京微信网站制作 网络安全审计公司 网站注册免费 上海简约网站建设公司 成都信息安全协会电话 网站所有权 网络安全审计系统作用 电子商务网站建设 国际网络安全期刊 网络安全相关会议 罗湖网站设计 网络安全策划书 美国 信息安全风险评估信息安全资质包括哪些 网站核验点 网络安全公司起名 银川建网站 国家信息安全部长 常用的信息安全技术""是哪几种?" 秒收的网站 国家信息安全管理的主要规定包括,-1 网络安全宣传内容 武汉 网站制作 网络安全 运营商交流 网络安全技术学习行业平台网站建设 网络安全安全组织 代运网站 4g网络安全性 信息安全 周报 南通网站建设设计 网站沙盒期 菏泽做网站 佛山手机网站建设优化 中国网络安全五十强 一张图 网络安全小组 浙江省网络安全宣传周 信息安全 杂志 苏州响应式网站建设 网络安全技术对抗赛 020网站系统 秒收的网站 合肥网络营销 中国 信息安全 法规 网络安全法 上位法 广东信息安全研究生,-1 全网营销套餐 国际网络安全期刊 常用的信息安全技术""是哪几种?" 网页制作 公司网站 网络营销新方式 全网营销套餐 网络安全审核员 学网络营销费用 四川开设信息安全专业吗 网络安全审核员 网络安全自主可控 网络安全公司起名 科大信息安全专业 网站建设网站 成都信息安全协会电话 寻找石家庄网站建设 做网站工具 国家网络安全周logo 公司信息安全标准城市分站网站设计