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

<a class="close" href="https://relg.vlbl.cn/">&times;</a>
网络安全攻防大赛银川网站优化营销型企业网站网络信息安全课件2015网络安全周做网站资讯信息安全服务资质上海建站网站简洁案例网络营销那点事重庆做网站宇宙浩瀚无穷,凡人渺小似无。 命运无常,神魔亦如微尘,力有不及。 大道苍茫,九霄是何处? 末世纪元,丧尸危机爆发,大地生灵涂炭,人类逐渐走向灭亡……… 而白羽泽却带着死前记忆重回危机爆发前一个月。 “迷茫之中,该何去何从?” 规划、防守、武器订购、受难者基地崛起…… 危机面前,是生,还是死? 历史给予我新生,我必将改写历史! 在此,请见证,新时代的到来………… 带着转化万物的能力的苏韵,来到了鸣潮的世界,在这片充满危机的土地成长了十几年后,来到了“隼”小队。 就算崩解的大地不再安稳 伤痕也依然会生长出顽强的意志 文明啊,再度越过了荒凉与崎岖 在狂乱的边境发掘新生的种子 你可能并不知道,你的基因中藏着怎样的秘密。它就像藏在你内心的深处的猛兽。当面临绝境时,它们就会如困兽出笼般被释放。 沈弋、白铭、齐方想三人在一个偶然的条件下被召唤进了一个名为“主神空间”的轮回死亡游戏,在这个游戏中,“玩家”会被不断送入名为“死亡幻境”游戏场景之中:进入病毒肆虐的城市击杀丧尸,于失落的海底王国探寻宝藏,在霓虹闪烁的赛博都市里反击人工智能,穿越奇幻的魔境阻挡黑暗入侵,又或是潜入百年前雾气弥漫的夜色中追察著名的连环杀人魔……完成场景目标即可获得奖励强化自身,但如果在游戏中死亡就会被系统抹杀。在这危险的游戏里三人很快就意识到,除了各种怪诞奇幻的场景,更多的危险其实来自主神空间里的其他人,各方势力藏龙卧虎、明争暗斗,被卷入其中的三人又该如何突破眼前的绝境?生死抉择,爱恨纠葛,主神空间存在的真正目的又是为何,一切的疑问都能“无限绝境”的世界里找到答案。不记得从什么时候开始,霉运成为了韩舟生活的主旋律,在又一次错过了研究生面试之后,忍无可忍的他终于爆发了,不过这一次迎接他的不是残酷的现实,而是属于他自己的金手指。 城市套路深,我要回农村,农村路太滑,人人都狡猾。 村医张小飞何德何能,让美女蜂拥而至?财富接踵而来? 不知哪个无良老祖立的狗屁祖训,要夺魁才能入世,老子是全能好不?上知天文,下晓地理,琴棋书画样样精通!要不是这几年,看不了师妹们楚楚可怜的目光。会老屈居第二?一尤其那几个老不死的,要不是以后可能成为本少的老丈人,就凭你们老笑我半吊子,不打得你们半身不遂,我配姓隆?!今年比的是武功和医术,看谁能与我争锋?今年我一定要下山,大师姐都下山六年了,要是我找到她,她牵几个小屁孩叫我舅舅,那我找谁哭去?清玄父母在小时候神秘失踪,为了解开谜团,他跟着师傅李闻道学习七年,直到一天师傅交给他一个任务,他的生活开始与过去接轨,事情的真相逐渐浮出水面,他也因此接触到了以往不为人知的世界,基因药剂,生物兵器,变异种族等事件不断出现,清玄以及他师傅又会怎么去应对呢……陆冲穿越到与母星似是而非的高武蓝星,觉醒武功自动修炼系统。 纳气诀三百六十五天不间断修炼,修为没有瓶颈; 开碑手知耻后勇,修炼速度翻倍,突破到大成; 金钟罩觉得自己还能抢救,自行推演成为神级武学…… 全球进化,异兽复苏,都是我的菜; 外星文明即将入侵,倒计时十年,请准备迎接; 神明百年后降临,届时将奴役蓝星…… 蓝星只是一级文明? 外星异族:谁说的,站出来试试! 万族入侵,华夏禁行! “若使人间万千生灵涂炭,星夜无光,那么我,便成为那一道光。” 大明皇于洪荒中崛起,塑造武者修炼境界的体系,吸纳万千大荒巨兽融入自身,成就神相境界,以自身血肉铸造明玄结界,保护人类繁衍生息。 九千多年后,一个少年从一处森林中缓缓苏醒过来,拥有废体的同时,竟然被认为是武神法相的拥有者。 在启明大陆中,武神在涅槃境失败后,可以选择转生,转生成功的人,在武灵的法相阶段,会展露出一个人影虚影,俗称“武神法相”。 在这个世界,他将秉承大明皇的意志,化身世界法则,对抗玄明结界外的洪荒兽潮。 “李揽雀,我将跨越你,迈向天下。” “接下来,我将以神相的形态出击。”
网站打模块 网络安全评估系统 企业网络营销调查心得体会 国家信息安全等级保护工作协调小组办公室推荐测评机构名单 信息安全管理技术 重庆网站建设公司 合肥网站优化 互联网文化营销 保定网站优化 网络安全会议2016 婚姻生活不顺的前世记忆咨询【www.richdady.cn】 事业不顺的职场调整【www.richdady.cn】 前世缘份的前世故事咨询【www.richdady.cn】 个人专属前世因果分析【www.richdady.cn】 与老公前世的记忆解析【www.richdady.cn】 如何解决感情纠纷?咨询【σσЗ8З55О88О√转ihbwel 强迫症的康复训练【企鹅383550880】√转ihbwel 孩子学习不好的辅导方法【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 老公家暴的咨询技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婴灵的安抚有哪些实用技巧?【微:qq383550880 】√转ihbwel 前世缘份的重逢故事【微:qq383550880 】√转ihbwel 学习成绩差【微:qq383550880 】√转ihbwel 阴间生活的前世记忆【σσЗ8З55О88О√转ihbwel 去世的父亲的前世因果咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 提高情商的方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 如何化解婴灵带来的负面影响?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 无形干扰的前世故事【企鹅383550880】√转ihbwel 家庭关系的沟通技巧有哪些?咨询【微:qq383550880 】√转ihbwel 前世缘份的缘分奇迹咨询【微:qq383550880 】√转ihbwel 前世今生的奇妙经历【www.richdady.cn】√转ihbwel 网络营销网站 建网站费用 福田做网站 江苏网站建设 营销主要是营销什么 珠海动态网站制作外包 网络营销工程师好考吗 网站备案 办理幕布拍照 设计网站的优势 微博营销诺一网络公关 河池网站建设 网站建设开发公司 信息安全控制基础原则 开展网络安全认证检测风险评估 杭州互联网网站定制公司 内蒙古网站设计 广警转网络安全 企业网络营销调查心得体会 部队个人手机网络安全 网络安全对抗数据赛 企业网络营销的缺点 国家信息安全服务资质证书 上海建站网站简洁案例 企业网络营销调查心得体会 部队个人手机网络安全 小企业网络安全方案 信息网络安全宣传 网站如何做好视觉营销 微博营销诺一网络公关 国家信息安全相关政策,-1 网络安全工具包 nst 网络营销效果报告 国际 个人信息安全 互联网营销含义 旅游响应式网站建设 淄博国家信息安全中心 简述网络营销组合内容 网络营销那点事 网站如何做好视觉营销 网络安全会议2016 京东商城的整合营销 音乐网站如何建设的 国家信息安全服务资质证书 小程序网站 建网站费用 公司网络安全措施 学校网站的作用 营销主要是营销什么 鸭蛋营销 网络安全评估系统 网络营销是通过购物的情景变换将产品直接介绍给终端用户以获取利润 信息安全保障人员认证证书 网络营销服务包括哪些 网络营销服务包括哪些 网络安全工具包 nst 网络安全化草案 营销主要是营销什么 思科 企业网络安全解决方案 福州安恒信息安全 大连做网站的公司有哪些 珠海动态网站制作外包 运营商网络安全方案 国家信息安全等级保护工作协调小组办公室推荐测评机构名单 功能性网站制作 网络营销工程师好考吗 信息安全的图片 做网站资讯 建网站费用 深圳网站制作公司 讯 张家港杨舍网站制作 2016国内信息安全事件 网络安全活动宣传 万州网站制作 网络安全化草案 设计网站的优势 信息安全大会2017网站策划厂 深圳手机网站设计 网络营销网站 东营网站推广 龙岗网站设计资讯 学校网站的作用 保定网站优化 泰安网站制作注册信息安全员培训 airbnb营销的优势 信息网络安全宣传 平台的网络安全认证 互联网信息安全要求,-1 国际 个人信息安全 企业网络营销的缺点 网络安全审查委员会 上海网络公司网站 上海建站网站简洁案例 计算机网络安全法规 陕西国家信息安全产...,-1 国家信息安全相关政策,-1 自己建网站 企网络安全措施 上海网络公司网站 邮件营销专家 2014重大信息安全事件,-1 北京市重大网络安全事件 网络安全防火墙 破坏网络信息安全罪 濮阳做网站 江苏网站建设 信息安全防范贴吧 大连做网站的公司有哪些 网站 开发 价格 公司网络安全措施 医院网络营销技巧 cpa营销 温州建网站业务人员 开展网络安全认证检测风险评估 263网站建设怎么样 部队个人手机网络安全 企业网站制作设计公司 科技网站配色方案 东营网站推广 信息安全技术实训总结 公司网站可以个人备案吗 网络安全审查委员会 电子邮件营销是指什么地方 中国国家信息安全政策 网络营销效果报告 信息安全控制基础原则 小程序网站 外贸网络营销教材 信息安全管理技术 网络安全防御 企网络安全措施 小企业网络安全方案 是网络安全原则之一 想弄个网站 求做网站 网站备案 办理幕布拍照