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

<a class="close" href="https://wmjpnycom.locha.cn/">&times;</a>
技术支持 网站建设网络安全测试报告网络技术及信息安全招生网站推广营销昆明微网站西安交通信息安全网如何建设公司门户网站信息安全竞赛报名流程网站的作用网络安全是什么在病床上躺了17年的沈安康终于2013去世,灵堂上看见哭的几番昏厥的父母,黯然神伤。 头七刚过,灵魂好似被吸尘器大力拉扯而走。 来到一个叫凤岭洲的地方,又重活了一世,这个地方有着会飞天的仙人.有会挥手成山的壮汉,也有从火焰中走出来的道士。 包子、馒头、薯片、辣条、红烧肉、佛跳墙各种各样的美食映入眼帘,比汽车更快的马车、比飞机更快的飞禽坐骑。 道灵体的沈安康会在这异世界闯出何等风头 敬请期待!!红月当空,全球骤变。拥有力量,你就高高在上,应有尽有,没有力量,你就只能任人宰割。危机爆发,众种族林立,丧尸,异兽,鬼种,人类。九转山河,浩瀚天下,试问天下,谁与争锋!起步比别人晚的颜逸能否追赶众人的脚步,在末日之中杀出一条属于自己的路。万界战场波澜壮阔,异魔入侵,诸天颤栗! 不屈少年唐尘,不忍看父母被魔宗征召上万界战场,于是仗剑闯魔阵,得混沌仙魔诀,踏上万界征途,一路拔剑,管他仙魔神佛妖,不服?给一剑,还不服?再给一剑。 我要成魔,谁人能阻,我要为仙,谁奈我何,是仙是魔,我自己说了才算。 仙魔同修,剑指万界我为尊!一个大学生,一个热门游戏,一次偶然的机会,大学生穿越到了游戏里的世界,在这个熟悉又陌生的游戏世界里,他凭借着自己的智慧,一步一步的变强。而在一步一步的前进路上,却发现原来游戏的背后,竟然隐藏着一个惊天大秘密,而这个秘密跟某个神秘组织有关,是孤芳自赏还是挑战命运呢,男主角和他的伙伴们该何去何从,敬请期待。灵气复苏,天地巨变。   陆仁贾获得不知名系统。   “检测宿主符合激活条件,获得千手观音金身!”   地窟怪物,秘境异兽,深海王者轮番侵袭……   陆仁贾:“各位施主,我佛慈悲…待我南无加特林菩萨,六根清净贫铀弹,一息三千六百转,大慈大悲渡世人。” 武穴市第三实验中学位于湖北黄冈市武穴市,是一所公办的中学,在这里,无数的狗血少年谱写华丽青春,他们有的四肢全无,有的神似刑天,但最后,都被叫兽联盟所拯救,最终成为三中抑智团的一员,那么,又是谁拯救了他们。 无数的奇异叫兽征战广济沙场,吼王猪文武,扭转空间的武王刘土豆,精通八国语言的李大头,以及生化指挥官江龙虾和李mar,外交官陈平国及时间控制师夏休息等丰厚的师资力量,鸡不可失,失不再来,三中抑智团,期待你的抑智! 学校联系电话:0713-6250449武道之途,乃与天争命,逆天而行,遭天罚万劫。世间唯有九脉者,脉与天合,顺天而行,身怀天地气运,迎劫渡身,逢凶化吉。 林辰本乃天赋异禀,为天纵骄子,修途一路高歌,遍处风光。因缘偶得奇功妙诀,断脉重修。从此遭同门羞耻,宗门遗弃,兄弟背叛,处遭唾弃。 待我重回巅峰,问鼎苍穹,势必一洗前耻,傲世凌天。空气中竟含有限制生物进化的慢性病毒?!大气层是阻碍生物吸收宇宙能量的囚笼?!有外星文明针对地球?!2222年的2月22日,经过几百年的研究,地球人类研究所发表了一个个令人三观彻底颠覆的结论。在所有人的惶恐不安中,几百年后,研究人员发现空气中的病毒慢慢消失了,从那以后,一切好像都变得不一样了…… 本文描写一对乡下的老夫妻,一起过着平凡的而甜蜜的生活,苦中作乐,为了能够购买到一辆5000元的三轮车而,老两口不断去努力种地挣钱的故事。接近生活,代入感极强,本小说以一对现实生活中的夫妻那真正的故事作为取材,不脱离实际还有现实,生动的刻画了真实生活的那最为现实的写照,看完了之后,引人深思,令人更加的去珍惜现在所拥有的生活。趁您的亲人好友还在人世,多多珍惜,生活,那是最为苦涩而甜蜜着的。天下风云出我辈,一入江湖岁月摧。皇图霸业谈笑中,不胜人生一场醉。 起神剑,斩断这天下纷争,荡平这贼寇乱党,还天下苍生一个太平盛世! 但这权位,不屑拥有之。 愿携手红颜,笑傲江湖!
上海网站公司 唐山网站建设报价 亚马逊网站的营销策略 上海网络安全信息中心 台州高端网站建设 一个优秀的网站 网络营销渠道的演变 电子政务网络安全现状 网络带营销 如何建设公司门户网站 婴灵的存在有哪些科学依据?咨询【www.richdady.cn】 家庭中常见的意外事故原因咨询【www.richdady.cn】 与女友前世的影响分析【www.richdady.cn】 亲子关系的改运方法咨询【www.richdady.cn】 脑部不清晰的案例分享咨询【www.richdady.cn】 亲子关系的教育策略有哪些?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 缺心眼的解决方法咨询【www.richdady.cn】√转ihbwel 人际关系不好的自我提升【微:qq383550880 】√转ihbwel 构建和谐亲子关系的方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的互动模式有哪些?【www.richdady.cn】√转ihbwel 工作升迁的障碍与突破【www.richdady.cn】√转ihbwel 财运不佳的财富积累方法有哪些?咨询【微:qq383550880 】√转ihbwel 孩子学习不好的原因分析【σσЗ8З55О88О√转ihbwel 解梦的自我提升【www.richdady.cn】√转ihbwel 家庭关系的相处之道【www.richdady.cn】√转ihbwel 家庭关系的矛盾化解方法有哪些?【σσЗ8З55О88О√转ihbwel 冤亲债主干扰威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 头脑混沌的原因分析咨询【σσЗ8З55О88О√转ihbwel 为什么过世的前世案例咨询【σσЗ8З55О88О√转ihbwel 前世今生测试在线咨询【企鹅383550880】√转ihbwel 网络营销渠道的演变 西安交通信息安全网 网站建设专家 工业控制系统信息安全指南 it产品信息安全认证费用 网站策划案 购物网站建设 连云港网站建设 营销推广服务 2016中国网络安全技术对抗赛结果 肥城网站建设 网站添加百度地图 网站红蓝色配色分析 企业对于信息安全控制 南昌市做网站的公司 国家网络安全宣传 网页设计的交流网站 网络营销系统的建设 信息安全工培训中心 营销推广服务 微博营销是指什么 营销类的公众号名称 陆宝华 信息安全 导航网站怎么建 网站颜色搭配网站 网络安全扫描工具 国家242信息安全局 解释网络营销服务 浙江高端网站 信息安全材料 网络营销前景好吗 王秀军 网络安全与信息化 网站图片尺寸 营销的研发和推广 工信部考试中心用的计算机网络信息安全理论与实践教程,-1 网络安全扫描工具 网络安全检讨书珠海品牌网站制作 中国互联网网络安全威胁治理联盟 信息安全培训目标是 网络营销渠道的演变 网络营销策划的特征 国家网络安全宣传 营销类的公众号名称 网络与信息安全大会 制作网站公司唐山 网站颜色搭配网站 网站建设专家 郑州网络营销策划公司 网站原创性 亚马逊网站的营销策略 seo营销 工业控制系统信息安全指南 网络安全公司资质 网络安全公司资质 网络营销渠道的演变 网站怎么添加管理员 郑州网络营销策划公司 首都网络安全 衡水网站建设供应商 杭州高端网站设计 青岛微网站 网络安全 案例 信息安全工培训中心 购物网站建设 在网站中添加百度地图 唐山网站建设报价 网络营销在哪些行业 咨询营销 网络技术及信息安全招生 石家庄企业商城版网站建设 重庆璧山网站制作公司哪家专业 2016十大信息安全事件 免费建站网站大全 网络营销的缺点有哪些 网络安全基本要求 2016中国网络安全技术对抗赛结果 网关 网络安全防护手段 信息安全风险评估的重要性 基本营销中国信息安全排名 网站移动端开发公司 信息安全 认证 超实用网站 网站添加百度地图 网站的作用 网站构成 网站构成 网络安全 案例 北京网络营销公司 网信办 网络安全 温州微网站制作公司推荐 企业对于信息安全控制 网络安全需打好组合拳 三星营销手法 微博营销是指什么 怎么创建网站 五级网络安全状况 达达网络营销软件 信息安全研究的问题 国家网络安全宣传 湖南的商城网站建设 郑州制作网站 上海营销平台网站建设 信息安全测评技术 网页设计的交流网站 广东市政府网站信息安全 昆明微网站 网营销协会 网络营销系统的建设 qq群营销的特点 郑州上市企业网站建设 如何建设公司门户网站 信息安全工培训中心 全案营销 合作模式 营销类证书 工信部考试中心用的计算机网络信息安全理论与实践教程,-1 信息安全等级保护官网 网络安全 实施目标 实验室信息安全要求 电子商务网站设计 属于网络安全服务 解释网络营销服务 上海网络安全信息中心 关键信息基础设施网络安全检查方案 joomla 2.5:你的网站建设使用与管理 pdf 肥城网站建设 首都网络安全 创建网站公司 徐州 网站推广营销 信息安全材料 网站背景色 卫龙辣条网络营销分析 工信部考试中心用的计算机网络信息安全理论与实践教程,-1 有站点营销 视频营销的优点 属于网络安全服务