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

<a class="close" href="https://sel.pieng.cn/">&times;</a>
网络安全的公司有哪些特征永川做网站的企业全网营销营销公司 上海网站改版seo三只松鼠 动漫营销策略网络安全态势感知综述内网信息安全行业现状成都高端建设网站整合营销理论案例分析最后的亚西兰。 什么是强者: 他为天下第一,却说勇无第一,武无最高。 可自古有言,一将顶三宗,三真灭四将,一帅困四真,一仙弑三军。 他想调停,可战神说:亚西兰,不是你小小武仙说了算! 时代风口浪尖,有人不愿成神,有人被迫成神,有人不得已而成为神。 他爹:我儿武学天赋,天下无人能及。他:我已经废了。 他,学成出山,却缝天下追杀,一路南逃北藏,无处藏身,最终被迫自立为王。 他曾经输麻了,可后来又赢麻了,却也一无所有,还要追了他一个青春的疯子给他递酒:吾有良酒,将军食之,可解心忧。 最后的亚西兰,危危大局,谁才是最终的执棋者,或终将揭晓。 可隐藏最深的他:天下大势,尽由我控。 …科技为刀有两面, 毁灭、创生一念间。 恶人持刀则为恶, 善人持刀则为善。 科技笼罩下的欲望狂野生长。 黑暗来临,动荡将起! 在这个天色已晚天未亮的世界中, 必然有人提刀换天明! 而在黑暗笼罩下的林清也将会成为其中的一员…… 杨洛因情跨入禁之领域长生祸,就算世界上所有的人都死了他都不会死。他看遍了诸世的沉浮,活了无数个时代,为了爱人杀入了平行宇宙,茫茫星空,浩瀚宇宙,世间万千都曾留下过他的足迹……直播间有黄金屋,直播间有颜如玉,直播间有千钟栗。得到超级直播间APP的戴霓飞,发誓要成为史上最强直播间管理员。陪哥哥姐姐去试炼的王子华被淘汰。不甘心的他只能在这茫茫大陆寻找机缘,却意外的寻到了一个老婆。 看着眼前的绝色少女,王子话华双腿一软,瘫在地上”琼华,你别太过分啊!“ 少女缓缓逼近,裙摆飘动间她俯身靠在王子华身侧,语气轻佻,”怎么?这么快就受不了?&amp;quot; 王子华:。。。。。。 自从碰到琼华,王子华的修行观就被带歪了。 先人说,修习时丹药吃多了对身体不好! 你们先人在胡说,以你的身体吃它跟吃饭一样! 然后王子华看着鼓的跟球一样的身体,一下子慌了,嚎啕大喊,“救救我!我快炸了” “琼华你骗我,你不说没事吗!” “哦,是没事啊!但谁让你吃那么多?吃饭还有吃撑的时候呢!” “可我吃饭没吃撑过啊” “那你好可怜哦!”(这是一部 经典港式剧情 的反转、反转再反转的故事,其间警察不是警察、兄妹不是兄妹,父子不是父子,恋人不是恋人,想死的时候死不成,不想死的时候却无力回天的烧脑故事。) 港岛警方追查一件连环催眠自杀案,受害者已有多人,死者都跟未来集团有关,而未来集团的创始人顾长孝,将会是下一个目标。 顾长孝 自小就有【针眼恐惧症】的心理病,惧怕尖锐的东西,因此从来不去医院看病,但是确诊肺癌晚期,儿女们为了表现孝心好分得更多财产,强制把顾长孝送到医院治疗,从而上演了一出家庭战争。 顾长孝逃出医院,被一个叫鬼点子的人催眠,并执行了一次疯狂的自杀,那就是同一时体验跳崖而死、上吊勒死、毒死、火烧、水淹而死 5 种死亡。 疯狂的自杀方式,让顾长孝很兴奋,但是,在临死时,他发现了最终的阴谋,不甘就这么死了,最终出意外,顾长孝被送到医院,醒来的时候,看到护士给他打针,他的【针眼恐惧症】顿时犯了,活活把自己吓死。 从此,复仇的大戏被拉开!冯景行穿越到妖魔鬼怪横行,仙人满地走的西游世界,成为花果山上的唯一人类。 原本打算苟起来,但在美猴王出海寻仙之前,委托代管花果山的猴群,成为代大王。 金手指随之而来,获得最强培育系统,能够培养无数强者。 不只是人类,就连猴子照样能够培育,还能其发掘天赋,专项培养。 有剑道天赋的猴子,学习无上剑法,化身剑仙,一剑开天。 有肉体天赋的猴子,学习强化肉身之术,化身魔神,徒手撕龙。 有锻造天赋的猴子,学习神锻之术,制造神兵利器,坚硬神甲。 有大智慧的猴子,学习未来科技,在西游搞科技,小到手机机器人,大到机甲航母。 美猴王学成归来之后,看到花果山猴猴如龙,遍地先进科技,直接傻眼,失声道:“让你代管花果山,怎么都成强者了?”“我只是像救活她……”你相信这个世界上是没有鬼的,都市传说也总是有迹可循,八尺大人是人撑着木偶,灵异公车只是高仿车伪装,猫脸老太用面具拐卖儿童。不过当儿童用伞顶着的帽子被家长收回,在街上的“野公交”被交警罚下,人贩子被判刑7年,谁又能解释这之后的状况呢?是神?是鬼?还是人?享受007福报的顾修,重生回到世纪初,成为了六岁小学生。 看着刚刚创业失败,背负债务进入迷茫期的父亲。 “老爸,要不我给你指条明路?” “先定个小目标。” “成首富!” 于是,一个中年男人开始了自己的逆袭人生,一步步走出了一条首富之路。 可当他登上神坛的那一刻却发现…… “儿子,你才念小学,怎么早成首富了?” 顾修:谁规定小学生不能当首富了?  
信息安全是什么系 网络安全监测报告 信息网络安全合格证 信息安全管理研究中心 海淀网站建设 海淀网站建设 网站改版seo 网站的框架 信息安全技术信息系统安全等级保护定级指南,-1 手机信息安全 ppt 冤亲债主干扰的化解仪式咨询【www.richdady.cn】 儿子抑郁症的前世因果【www.richdady.cn】 如何识别外灵干扰的症状咨询【www.richdady.cn】 心慌胸闷头晕的环境影响咨询【www.richdady.cn】 升迁障碍的自我提升【www.richdady.cn】 家庭关系【www.richdady.cn】√转ihbwel 家庭关系的心理调适方法有哪些?【σσЗ8З55О88О√转ihbwel 财运不佳的财富增长咨询【微:qq383550880 】√转ihbwel 家庭关系的幸福指南有哪些?咨询【企鹅383550880】√转ihbwel 如何知道自己有前世缘份?咨询【微:qq383550880 】√转ihbwel 家庭关系的心理调适方法有哪些?咨询【微:qq383550880 】√转ihbwel 化解外灵的专业手段【微:qq383550880 】√转ihbwel 婚姻生活不顺的沟通技巧【σσЗ8З55О88О√转ihbwel 孩子学习不好的自我提升【www.richdady.cn】√转ihbwel 财运问题在线咨询咨询【σσЗ8З55О88О√转ihbwel 升迁障碍的职场瓶颈如何突破?咨询【www.richdady.cn】√转ihbwel 脑部不清晰的心理调适咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 强迫症的治疗方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婚姻生活不顺的前世记忆威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 事业不顺的原因有哪些?【企鹅383550880】√转ihbwel 网络安全及等级保护 互联网营销项目宏观环境分析的内容有 外贸网站推广软件 舆情监控 网络安全 网络营销历史发展状况 落地页网站 在线购物网站功能模块 手机信息安全 ppt 公司网络安全管理办法 网站建设创意 信息安全与it审计关系 汽车互联网营销培训 营销的 企业标准型手机网站 网络安全未来技术论坛 网站制作旅行社 网络平台营销方案 互联网网络安全报告 信息安全风险管理介绍,-1 高校网络安全建设 昆明微网站制作 信息安全数据库安全 信息安全课程设计 信息网络安全合格证 美国 网络安全战略特征 南通网站建设 石家庄建网站 电商营销课程培训 深圳h5网站制作 营销模式 产品策略 信息安全等级二级评测 海淀网站建设 防火墙与网络安全的关系 企业网站网络营销职能 移动支付推广营销方案 通信网络安全技术 黄石网站建设 南京信息安全研究院有限公司 营销公司 上海 网络营销网站规划建设 BSA网络安全 网络安全与信息化领导小组 企业成功营销策略案例分析北京市 网络安全 翻墙 武汉大型网站建设沧州网站建设制作设计优化 微信支付 网站建设 E校园营销推广方案 网络安全宣传广告 网站设计与制作 2012年网络安全事件 深圳家居网站建设公司 计算机网络安全员 信息安全基础实验内容 信息安全管理研究中心 成都高端建设网站 公安厅 网络安全培训 网络安全相关的网站 2016口碑营销的例子 营销学课程 网络安全课程 内网信息安全行业现状 南京信息安全测评中心地址,-1 网站建设的 美国 网络安全战略特征 BSA网络安全 高端网站设计公司 上海做网站 信息安全是什么系 营销信一个网站的主题和设计风格 信息安全中的信息是指 茂名网站建设 负责信息安全等级保护工作的监督 信息安全等级保护 谁使用 谁负责 三只松鼠 动漫营销策略 电商营销课程培训 医院营销网 服务类网站免费建站 中企动力官网网站 网站群方案 互联网营销项目宏观环境分析的内容有 电子化营销 营销模式 产品策略 昆明微网站制作 网络营销有那些职能 网络安全的公司有哪些特征 成都高端建设网站 信息安全数据库安全 长沙网站空间 玉溪网站建设 360网络安全技术 企业标准型手机网站 移动支付推广营销方案 网站建设创意 网络安全课程 长沙网站空间 网络营销策略班单位网络安全等级保护工作年度考核情况 重庆网络营销服务. 做网站网络公司 做网站网络公司 电商营销课程培训 手机信息安全 ppt 四川省信息安全测评中心业务 佛山网站制作 高校网络安全建设 企业网站设计需要多久 技能竞赛信息安全人才 备份信息安全 汽车互联网营销培训 信息安全的证书 信息安全技术主要有 网络安全国内高校排名 舆情监控 网络安全 网络营销策略班单位网络安全等级保护工作年度考核情况 珠海品牌网站制作 中国互联网网络安全威胁治理联盟 2012年网络安全事件 信息安全等级 四级 信息安全数据库安全 成都高端建设网站 深信服 中国信息安全测评中心安全产品证书eal3证书 无锡地区网站制作公司排名 网络与信息安全实验教程 了解凡客企业网络营销现状分析目前企业网络营销存在的问题 网络安全管理局 级别 医院营销网 蘑菇街营销 深信服 中国信息安全测评中心安全产品证书eal3证书 2017网络信息安全峰会 网络安全技术方向 玉溪网站建设 京东目标市场营销 备份信息安全 中企动力官网网站 营销界名人 营销的 互联网网络安全报告