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

<a class="close" href="https://89tgcom.xope.cn/">&times;</a>
佛山网站建设是哪个网络营销模式的特点是什么意思相关搜索网络整合营销中国mask网络安全团队中国移动网络安全现状重庆网络营销代理宁波市计算机信息网络安全协会wifi无线网络安全设置2017网络安全大会上海主流网站风格在冥界中里,若君颜作为个普通小鬼,普普通通的活着,等到二十岁高考毕业后去投胎。 可没想到高考成绩单出来了,自己虽然成绩过线了,但是由于上辈子玩游戏太菜,怨念太强,因果纠缠过深,被教导主任宣告前往第十九层地狱受罚。 而这第十九层新建的游戏地狱,作为若君颜梦魇般的存在,自己必须直播通关至少一百款游戏,才有投胎的希望。 直播毕业那天,望着来自全星域的数亿铁粉,若君颜突然发现,我这是被保送了? 投胎是门技术活!他竟然,重生在妓馆之中,还是个女的!   虽然,出身卑贱还是女儿身!   为了民族不被女真蒙元荼毒,她要颠倒乾坤,重塑山河姜雨扬,男,22岁。在这个世界,他只是一名普通的袋鼠打工仔,但突然有一天,他莫名其妙地走进了另一个陌生的世界。 在这里,他是万民敬仰的罗汉爷爷,惩奸除恶,他又是一个卑鄙无耻的邪恶首领。 一个行走在光明与黑暗间的走私商人,是无情的屠夫,也是活人无数的神明。 他是无数矛盾的混合体,也是新世界的创造者。 姜雨扬:“我真没想弄这么大动静啊~”一个时代的开启,英雄的诞生。【系统+记者+内幕曝光】   不知什么时候,媒体报道只在意噱头和热度,却无人关心真相。   陈牧穿越平行时空,成为一位独立记者。   特立独行的选择站在真相那一边。   网红奶茶店每天排长队。   陈牧报道:“某网红奶茶店为节约成本,长期使用过期牛奶,现已有多位受害者住院,奶茶店生意却每日爆满。”   某流量小生事业蒸蒸日上。   陈牧报道:“当红流量已为三孩爸,却和漂亮粉丝牵连不清。”   某首富花大价钱为小儿子庆祝十八岁生日。   陈牧报道:“惊!首富头顶青青草原,为人养儿十八年!”   网友:“这记者能处,有事他真报啊!”方源穿越到异界,发现自己身处牢狱,即将命不久矣。 幸好有着伴随他穿越而来的玄幻模拟器,让方源能够将意识投入到模拟器世界中模拟人生,获得超凡力量。 武道世界、巫师世界、诡异世界、修仙世界... 在无数个画风迥异的模拟世界中,方源意识投射诸界,在诸世界中漫步、横行…… 黑帮大哥之子从小便被寄予厚望 无奈其因不明原因决心做个好人。十年之后一辆军用猛士在跨海大桥上行驶 车上的男人究竟带着什么任务......《村姑与胆小鬼》又名《那村》,是中国国土资源作家协会会员王认知先生《那》系列三部曲之一。王认知,曾用笔名王小勃、莫夕阳等,主任记者职称,曾获全国十大优秀记者,具有深厚的社会阅历及洞察力。有短篇小说、散文、诗歌等散见于《广西文学》、《散文诗》、《广西日报》、《工人日报》、《人民日报》等杂志报刊。《村姑与胆小鬼》,作者以自然主义的笔法,刻画了特殊社会背景下,一对农村青年的爱情故事,描述乡村农家子弟追求幸福的生活的奋斗路。具有极大的原欲特色,是一份三分熟的牛排配着猛烈的威士忌,极富阅读感,具有灵魂冲击性。 明朝永乐年间,传出陈友谅藏宝地图。江湖各帮争抢,锦衣卫寻宝未果,浙江按察使周浩然一家惨遭灭门,宁波巨富肖伯庸被抄家,流亡海外的张士诚的后裔为复国组织力量,寻找宝藏下落。 本书有三个主人公: 周浩然遗孤周行健身负血海深仇,在苦难中成长,和生世未知的江雪同生死共患难,成为一生挚爱,正当情深似海时,发现自己最爱的女友的父亲竟是血海深仇的大仇人   肖伯庸长子肖宇是个逍遥快活的公子,被盗贼劫持,表妹秀秀对他情愫暗生,却是落花有意,流水无情。明教教主女儿马梦瑶万里寻母,随郑和下西洋,与肖宇经历生死不渝的爱情,终成正果。家资被抄,使肖宇性格骤变,铲锄奸佞,匡扶江山,对抗赵策,从快乐公子成长为经邦纬国之才。 张士诚的后裔赵策流亡海外,武功卓绝足智多谋,一统江湖各派,组织各方力量对抗朝廷,被云南沐府千金沐颖倾心爱慕,和毒教教主阿尼美的情感纠葛,从英雄到狗熊的蜕变,权欲对人性的扭曲,一生只为复国,却好梦成空......
营销观点 网络安全国际研讨会2014 个人信息安全 2017最新网络营销方式 便宜的网站设计 校园 网络安全 网站站制做 nns网络安全扫描器 网络安全信息网 建官网个人网站 台湾 多层次网络营销 事业不顺的职业规划【www.richdady.cn】 改善脑部不清晰的方法【www.richdady.cn】 人际关系不好的案例分享咨询【www.richdady.cn】 特殊学校的课程设置【www.richdady.cn】 升迁障碍的职业发展【www.richdady.cn】 无形干扰的解决方法咨询【企鹅383550880】√转ihbwel 什么原因意外咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 头脑混沌的生活习惯【企鹅383550880】√转ihbwel 大龄剩女的婚恋经验【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世今生的轮回有哪些真实经历?威:⒊⒏⒊⒌⒌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 婴灵的超度与家庭和谐咨询【企鹅383550880】√转ihbwel 财运不佳的财富转运咨询【σσЗ8З55О88О√转ihbwel 深圳市计算信息网络安全员 深圳网站建设 独 典型的网络安全威胁 网站维护等 网络安全设备厂商 深圳手机网站 网络安全的解决途径 上海平台网站建设公司 网络安全信息网 武汉设计网站公司 湖南营销网站建设 网站示例 政府网络安全事件通报 衡水网站设计怎么做 网站个性化 长沙微信网站公司 销售观念的营销手段是 唯品会口碑营销方案 网络营销定价方案 济南网站建设公司 惠州网站建设公司 建视频网站 沧州做网站 许可营销工具有哪些? 加解密网络安全的书 淘宝服装店营销策划 做个简单网站大概多少钱 唯品会口碑营销方案 sdn 信息安全 长沙微信网站公司 网络安全 强化培训 重庆网络营销代理 个人网站怎么建立 便宜的网站设计 中国mask网络安全团队 淘宝服装店营销策划 网络营销网站建设实训 达内学网络营销 国家信息网络安全中心 2015关于网络安全的国内新闻 交友网站建设 网站怎么推广 台湾 多层次网络营销 网站制作软件下载 信息安全方案实例信息安全的实现目标,-1 加解密网络安全的书 最实战的全网营销培训 许昌网站建设 新手做网站 台湾 多层次网络营销 成都网站建设市场分析 长春作网站 专业培训网络营销 网络营销的成本优势 网络安全 强化培训 网络安全信息网 武汉手机网站建设咨询 设计有关的网站 深圳网站建设 独 网络营销需要做什么的 网络营销中文版 信息安全 项目新媒体企业微信营销成功案例 建官网个人网站 校园 网络安全 惠州网站建设公司 定制版网站建设费用 武汉网站建设 成都网站建设市场分析 展示用网站 网络安全的解决途径 网络安全信息网 网站站制做 企业网络安全解决案例分析 网络安全部门提示 一键建网站 专注武汉手机网站设计 28所 网络安全部 销售观念的营销手段是 典型的网络安全威胁 量子计算与网络安全 网站设计图 微网站制作软件 airbnb特色营销 宁德营销策划 优帮云 全网营销推广公司 全网营销推广公司 信息安全 项目新媒体企业微信营销成功案例 政府网络安全事件通报 网站设计 广州 宁波市计算机信息网络安全协会 武汉设计网站公司 网站被k 德清做网站 网络安全设备厂商 徐州市信息安全等级保护工作领导小组办公室 网站个性化 衡水企业做网站推广 有利于优化的网站模板 网站维护等 airbnb特色营销 青岛手机网站制作 青岛手机网站制作 外贸网络营销考题 网络安全 专业 重庆江北营销型网站建设公司推荐 网络安全国际研讨会2014 个人信息安全 28所 网络安全部 网站设计公司无锡 家教网站建设 桥南做网站 2017最新网络营销方式 门户型网站 佛山网站建设是哪个 锐捷网络安全产品分析报告 石家庄网站营销 网站配色方案 对比色 网络安全 强化培训 公司网站有哪些重要性 网站建设排版页面 千人群营销 长沙高端网站制作公司 上海营销策划 定制做网站 网络安全指标体系 网络安全=信息安全 网络营销中文版 个人网站怎么建立 中国mask网络安全团队 网络安全厂商产品对比 济南网站建设公司 网站示例 石家庄网站营销 淘宝客网站建站 沧州做网站 千人群营销