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

<a class="close" href="https://8khdqbt.9747.com.cn/">&times;</a>
公安部 网络安全产品边界网络安全网站解决方案苏州好的做网站的公司中国信息安全网作业,-1网络安全宣传周活动营销资源网建设网站教程高大上网站建设公司EDM邮件营销林阳穿越玄幻世界,成为一个小家族的外姓子弟 无资质无背景无机缘,原以为这辈子就这么平平淡淡过去了 不曾想,觉醒了万物编辑系统。 “淬体丹”经过编辑,变成了九窍金丹! “莽牛劲”功法经过编辑,变成了神象镇狱劲! “普通的丹炉”经过编辑,变成了全自动超神炼丹炉! “瞳术”神通经过编辑变成“重瞳术”! .. 就这样,林阳靠着编辑器,从小家族进入仙门,在仙门中崛起!不知多少年后,蓦然回首,发现自己早已永生,镇压万古丘处机述说的,王重阳与林朝英故事,从何得知?属事实全部? 「金童剑法」与林朝英有何关係?何以会令她难以呼吸? 「不变山峦」乃借助金国力量,图谋「灭宋室,復南唐」的组织。他们训练的「暗黑剑士」手段凶残偏激,宋国义士不齿其为虎作伥,鄙称「魔峦」。林朝英身为剑士,奉命取「义守楚州第一人」王世雄头颅,过程中却对他萌生了情愫。 宋民的楚州据地遭金军剿灭,王世雄悲恸中失去踪影,林朝英宁负背叛之名,执意寻访他的下落。八年间渡过重重险阻,终找到改名「王重阳」的他。 一本写有捱打不受伤秘诀的经书,一个牵涉魔峦多方势力利益的阴谋,一场金国暴军南侵的战役……林朝英与王重阳并剑使出「金童丹志剑法」力挽狂澜;纵几番散聚,二人坚持情义,还订立双双归隐「活死人墓」之约…… 怎奈下场却落得 ── 丹志枉,负素心,一生绸缪悲遗憾; 玉女愿,让金童,惟寄卷藏将约践。 来,从新从心去体验,这段耳熟能详故事裡,「缘分倒颠」的那些人和那些事……流水线工人意外穿越至异界,开启了他的一段传奇人生。 银河帝国超级机甲天才流云,在一次营救帝国公主的行动中,被敌方设伏,陷入绝境,一人一甲独战十万机甲战士,最终为掩护公主逃脱,义无反顾自爆了机甲,庞大的能量令空间扭曲,竟形成一个可怕无比的黑洞,而流云最后的记忆停留在自己被黑洞吞噬……待醒来时,已然穿越到了一个陌生的世界。“大秦算什么...寡人要率新唐的铁骑,打下一个大大的疆域!”躺在印第安部落内,手中摇晃着看不清颜色的酒杯,李承洲向着身边所有人郑重承诺!要替大秦守护江山不倒!前提..得是自己来做皇帝!自此,超脱数千年的大革命先从美洲大陆开始了!在海盐家雾城的两人,刘羽和柳青潇一直在调查小时候的灾难的实情,一次执行任务的途中,柳青潇失忆,智商也只是小孩的程度,却在找回记忆的途中发掘出了真相大象老师给儿子、女儿写的系列书信,讲述自己在他们那个年龄时的故事。“恭喜宿主抽到物品绿巨人血清。” 我踏马,这个牛背啊,作为漫威十年老粉,对绿巨人可谓是极其深刻,尤其是那个回眸一笑,不由得就想起一张动图,让人不寒而栗。灵兽人程森屮(che四声)十一岁丧母,十三岁遭灭族。程森屮,程猖,程狂兄弟三人幸存。一年后大哥程猖却操纵程森屮杀死小时密友和程猖,心灰意冷的程森屮消失了三个月后在长安佚名“山狼”靠杀人赚钱。两年后,“山狼”声名崛起无意间认识权门高氏二公子和洌氏二公,这时有人叫杀死两人。山狼不从,没曾想那人正是大哥程猖。几经挣扎后,山狼坠于程狂和卫天兰坠落的黑鹰崖。 十年后 顶级杀手——山狼,再次出现在高风舌眼前。 正义也许会迟到,但永远不会缺席。 自上古时期,人们敬畏神灵。在千百年间,人们发现了能够吸收灵气修炼自己的方法。人们对神灵的神力逐渐轻视,甚至挑衅神灵。奈何江湖高手众多,神灵乃万物之灵,数量稀少。为了人神共存,两界巨头决定联姻计划。神界选择了龙女白小林,而人界为了驸马之位,分为两派。战争也从此打响。
app 营销方式 信息安全排名前50 购物网站如何推广 外贸公司的网站建设模板下载 小红书 营销玩法 紫网站建设 网络安全问题会议 西安成品网站建设 网络安全怎样辨别 国家级网络安全事件 投资项目的案例分享【www.richdady.cn】 事业不顺的职场提升咨询【www.richdady.cn】 内心恐惧胆怯的前世因果【www.richdady.cn】 2. 通灵与灵性提升咨询【www.richdady.cn】 与老公前世的前世缘分咨询【www.richdady.cn】 事业不顺的原因分析咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 亲子关系的家庭氛围如何营造?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 公司破产的案例分享【www.richdady.cn】√转ihbwel 升迁障碍的职场策略咨询【σσЗ8З55О88О√转ihbwel 阴间生活的前世修行咨询【企鹅383550880】√转ihbwel 为什么过世【www.richdady.cn】√转ihbwel 冤亲债主干扰的化解仪式咨询【企鹅383550880】√转ihbwel 失业的应对方法咨询【www.richdady.cn】√转ihbwel 意外的前世影响咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的案例分享威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的心理调适【www.richdady.cn】√转ihbwel 忧郁症的心理调适咨询【企鹅383550880】√转ihbwel 如何识别外灵干扰的症状【微:qq383550880 】√转ihbwel 灵性成长工作坊【微:qq383550880 】√转ihbwel 财运不佳的自我提升【企鹅383550880】√转ihbwel 信息安全方案 招聘,-1 品牌病毒式营销案例 外贸公司的网站建设模板下载 常用微信营销方式营销号公司 南开大学信息安全硕士 网络安全开发环境 粉丝网站制作 网络安全问题会议 信息安全 SAG 中国网络安全对抗 网络安全的硕士 西安成品网站建设 网站建设分几个阶段 汕头网络营销外包 互联网热点营销 网站公司 如何打造网站 美国 信息安全人才 小红书 营销玩法 外贸公司的网站建设模板下载 网络安全态势分析 无锡网站推 台湾网站建设 大学生 网络信息安全 网络信息安全服务包括哪些内容,-1 移动营销师 免费教育网站建设 移动营销师 电子邮件营销文本 美食网站案例 青岛模板化网站建设 杭州营销策划方案 南通做网站 南通做网站 如何打造网站 台州市网站建设 服务器 信息安全性 网站建设seo优化的好处 企业如何视频营销策划 互联网营销前景 网络安全问题会议 优化:高效的seo社交媒体和内容整合营销实践及案例 深圳高端电商网站建设者 山石网科网络安全 网络安全设备 安全威胁 网络安全宣传周意义 长沙 做营销型网站的公司 2.信息安全有哪16个威胁请解释 信息安全排名前50 青岛php网站建设 公司网站的实例 网站维护? 微信营销思路 信息安全排名前50 网络和信息安全通报实行小时联络制度 汕头网络营销外包 重庆网络信息安全 网络和信息安全通报实行小时联络制度 关于网络安全性的ppt 网络安全峰会时间 浪潮集团与信息安全 qq网络安全修复 大学生 网络信息安全 b2b技术型社区营销 三只松鼠营销建议 国家网络安全教育计划 达内培训 微络营销深圳 2014年网络安全报告 互联网热点营销 全网网络营销 关于网络安全的信息安全 怎么利用网络营销 网络信息安全新方向 南开大学信息安全硕士 网络安全应对方案 2016信息安全泄密案例 b2b技术型社区营销 长沙做网站建设的 信息安全 美国 网站质作 培训网站建设 网络信息安全基础 网络营销师考试形式 中国网络安全对抗 昆明网络营销网站 培训网站建设 广东信息安全协会 网络建设网站邢台网站建设服务 网络安全怎样辨别 广东信息安全协会 简述网营销的优势广州网站建设公司 大学生网络信息安全ppt,-1 交互式网站设计 深圳 关于网络安全性的ppt 企业网络营销问题研究 厦门外贸网站 网络安全素质 中国信息安全的法律法规 网络营销属于什么院系 惠州网络营销 网站解决方案 网络安全 系统安全 南京网络安全类公司排名 免费教育网站建设 网络安全峰会时间 网络营销目标怎么写 紫网站建设 信息安全方案 招聘,-1 网络安全 请示 网络安全运维标准 微网站 网络安全生态峰会 官网 工业网络安全企业 淘宝营销顾问 网站分享设计 高大上网站建设公司 支付宝的网络营销为例 达内网络营销课程版本 EDM邮件营销 互联网热点营销 沈阳网站优化 信息安全测评工具 营销外包贴吧软文发布 国家 网络安全成都网络安全 网站分享设计 免费创建网站 朋友圈营销的利弊 简单的网站模板 台湾网站建设 公安部网络信息安全产品 博客营销的要点 会员式营销案例 i春秋网络安全大片app 2016信息安全泄密案例 网络信息安全工程师需要读什么专业