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

<a class="close" href="https://xx8.nengpi.cn/">&times;</a>
信息安全整体解决方案网站建设有免费的吗昆明做网站中国信息产业商会信息安全产业分会访问网站慢网站打开速度优化网络整合营销网络广告全网价值营销服务商淘宝网店营销培训信息安全行业新技术2022年最新 都市爽剧 逆凡人生之 永生 本故事集玄幻小说武侠小说为一体!讲述主人公廖凡的永生之道!这里有魔法和斗气!有武林和秘籍!有仙魔和妖怪!有侠骨和柔情! 作者以上帝视角,完美的诠释了所有故事情节的发展,带你进入一个奇妙的魔幻世界!! 感谢平台支持 民国时期,我是拉洋车的,牛A的黑狗子探长刘麻子想强睡我的媳妇,被我制止。他带着大批的黑狗子对我用刑把我整死。阴间,我遇见大诗仙,向他诉说冤情,然后到冤魂村走一趟,才知道比我冤的人太多了。之后他把我变成了文化人,然后又把我穿越到了人间南粤市,让我抑恶扬善努力去做正能量的牛A人。此时的南粤市已是八十年代末期,我从打工做起,经历了开放大潮,凭着自己的能力为公司做出了很大的贡献,同时也收获了爱情。几年后,到处都在办报纸,我凭着自己的文笔混进报社当上了记者,通过采访工作,结识很多企业老板,在一次采访中,意外发现我生前认识的那个黑狗子探长刘麻子也被穿越到了这座城市,而且是下海经商混成了道貌岸然的董事长,被认为是红极一时的牛A人物。我悄悄跟踪,在我女友的配合帮助下,发现了他的一系列违法犯罪活动和伤天害理的事情,在掌握了大量的证据后,我凭着一腔正气,成功举报最终将其绳之以法。我终于成了正能量的牛A人!十五年前,萧家一夜落败,三十七位萧家顶梁柱为皇室所杀,至此萧家退出王权之列走向商贾大道,萧家长子萧云以孱弱身躯肩挑萧家未来,十五年时间成长为京城手握权势的大人物之一。十五年后,甘州陷落,南,宁两国的决战一触即发,究竟是重回朝堂,扭转乾坤?还是明哲保身,退走他乡?隐藏起来的心,胸腔中的复仇怒火,奸佞小人和萧家的再一次对决,谁胜谁负?秦夜穿越大秦,为了谋生在巨鹿郡城开了一家小店,闲来无事时经常和隔壁的赵老头聊天! 老赵:如今六国覆灭,天下一统,始皇开万世基业,建不世不功…… 秦夜:造反吧!我给你说,始皇马上就要死了! 老赵:…… 秦夜:大秦也要亡了!! 老赵:…… 秦夜:而且…… 老赵:你闭嘴吧你! 穿越大秦,收诸子百家,镇六国余孽,灭百越匈奴,为大秦谋天下,为大秦逆天改命! 老赵:愿为先生之棋子,换大秦万世之太平!七零后都市生活的随感、随笔!异界的国度妖魔苏醒,那里即将面临生死劫难,轩辕庄就是摆脱生死劫难的寄托。轩辕庄自己在非凡经历得以砥砺成长。少年沈翔得到无上传承,获得逆天神脉,学得绝世神功,掌握超绝丹术,这使他在武道之路春风得意……饿的时候炼点丹药当零食吃,无聊时耍耍那些来求丹的武道高人……想观看更多的精彩内容,请收藏关注《傲世丹神》! 【微信公众号jixiaozei88 QQ群572384158】社畜石源,闲暇之余,最爱好看免费小说。 他甚至还有一个美好的梦想,躺在家里什么工作都不用做,光靠看免费小说就能迎娶白富美、走上人生巅峰...直到有一天,他看的免费小说里,突然出现一个闪烁着光泽的宝箱,石源下意识便点开。 “你寻到青铜宝箱*1,获得地摊大力丸*5。” “叮..检测到你当日当周阅读时长达标,符合看免费小说就变强系统激活条件,恭喜你获得现金奖励10000,特殊技能过目不忘*1..” “书中自有颜如玉,书中自有黄金屋,看免费小说就变强,拒绝一切套路!” “你寻到黄金宝箱*1,获得可控核聚变技术*1..寻到暗金宝箱*1,获得完整修仙功法*1...” 那一日,一个自称女反派的绝美女人从书中跳出,痛哭流涕告诉石源,战神XX率十万虎贲回归血洗她全家,寻求石源帮助。 石源:“战神是吧?十万虎贲是吧?统统镇压丢进X院照顾战神他全家的生意...” 幽默穿越爽文,喜欢的朋友赶紧前来围观咯!首次在17K发表小说,还请大家多多支持!谢谢、谢谢、谢谢!(重要的事都要说三遍,呵呵!)富二代穿越到红楼世界,成为皇子,本来以为又是躺赢的一生,但‘外挂’降临,主角被迫走上无敌诸天万界的道路。
福州安恒信息安全 营销品牌 舆情 网站站制做橙网站 中国网络安全团队 日本网络安全专业硕士 网站开发制作 信息安全行业新技术 南京网站制作公司 做网站的 营销的宏观环境 前世老公的前世因果咨询【www.richdady.cn】 人际关系不好的前世记忆【www.richdady.cn】 失业的原因分析咨询【www.richdady.cn】 前世老公的前世故事【www.richdady.cn】 前世缘份的故事有哪些案例?【www.richdady.cn】 灵魂化解的具体步骤【企鹅383550880】√转ihbwel 纠纷的原因分析【企鹅383550880】√转ihbwel 孩子厌学的家庭教育咨询【www.richdady.cn】√转ihbwel 解梦的方法与技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 有官司的调解技巧咨询【www.richdady.cn】√转ihbwel 前世老婆的前世解析咨询【www.richdady.cn】√转ihbwel 长期耳鸣可能是哪些疾病的信号威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与女友前世的前世解析【微:qq383550880 】√转ihbwel 官司的案例分享【企鹅383550880】√转ihbwel 冤亲债主的干扰与化解咨询【σσЗ8З55О88О√转ihbwel 冤亲债主的干扰影响咨询【企鹅383550880】√转ihbwel 什么原因意外的前世修行咨询【www.richdady.cn】√转ihbwel 婚姻生活不顺的前世因果【σσЗ8З55О88О√转ihbwel 与老公前世的因果关系【σσЗ8З55О88О√转ihbwel 冤亲债主干扰的表现威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 网站打开速度优化 破坏网络信息安全罪 网络有哪些营销方式有哪些影响因素 腾达网络安全密钥不匹配 腾讯 hook 网络安全 网络营销策划案例 全国信息安全大赛 广州华南信息安全测评中心 国内网络安全平台 上海信息安全服务资质咨询,-1 全网市场营销有限公司招聘信息系统 产品网络整合营销方案 云计算与网络安全视频教程 百度网络营销搜索推广 移动营销形式包括 网络专业的网站建设 网站打开速度优化 破坏网络信息安全罪 网络有哪些营销方式有哪些影响因素 腾达网络安全密钥不匹配 腾讯 hook 网络安全 网络营销策划案例 全国信息安全大赛 广州华南信息安全测评中心 国内网络安全平台 上海信息安全服务资质咨询,-1 全网市场营销有限公司招聘信息系统 产品网络整合营销方案 云计算与网络安全视频教程 百度网络营销搜索推广 信息安全在线实验室 2016网络安全案例事件 惠普网络安全密钥多少 沧州做网站 杭州网络安全平台登录 网站图片标签网络安全实验室wp 陕西国家信息安全产...,-1 移动营销形式包括 网络营销工程师培训 网络安全设备的功能 网络安全防御 2017年5月 网络安全法 网站加外链 网络整合营销网络广告 信息安全认证体系,-1 广东信息网络安全协会 网络安全活动宣传 信息安全在线实验室 北邮网络安全学院 南京网站制作公司 免费企业网站建设 网络安全 人才队伍 社会化 口碑营销 公司 网络营销服务有哪些 网络安全事件处理案例 信息安全 社会责任 专业建设网站制作 2016网络安全与信息化 郑州计算机网络安全 什么是营销策略组合 网络信息安全相关专业,-1 网络安全电子版 2016网络安全案例事件 重庆微信活动营销案例 做网站的 网站设计规划书 重庆营销策划 网络安全评估系统 网络营销公司培训 杭州网络安全平台登录 网络安全实习日志 营销综合平台建设 网站建设主页 鸭蛋营销 网络安全评估系统 经典网络营销案例分析 移动网络营销优缺点 网络安全销售证 福州做网站建设 南京网络营销推广报价 营销型网站建设定制 深圳教育平台网站建设 网络安全教程2015 有哪些网络安全论坛 网络专业的网站建设 全网霸屏营销系统 图文并茂计算机信息安全 网站站制做橙网站 公司网站模板 信息安全 社会责任 信息安全的图片 电子信息安全 杭州网络安全平台登录 内容营销作用 网络营销平台 定价 信息安全专业 云计算与网络安全视频教程 重庆营销策划 阿里云 信息安全 全国信息安全技能证书 网站怎么办 国内网络安全平台 网络安全技术学什么 移动营销形式包括 网络营销竞争大吗 网游营销 全国信息安全技能证书 上海信息安全服务资质咨询,-1 信息安全等级保护 费用 网络营销公司培训 制作企业网站 为什么要重视网络安全 国际 个人信息安全 政府对网络营销政策 借势营销案例 武汉市网络与信息安全,-1 上海建站网站简洁案例 网络安全事件处理案例 网络安全与个人 外贸网络营销书籍推荐 沧州做网站 网络整合营销推广托管 信息安全专业专业课 怎么维护社交网络安全 国内网络安全平台 手机网站首页经典案例 网站设计公司无锡 网络安全产品厂商 信息安全技术实训总结 阿里云 信息安全 整合营销公司 长安网站优化 广东信息网络安全协会 网站图片标签网络安全实验室wp 社会化 口碑营销 公司