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

<a class="close" href="https://wzi9q.3204.com.cn/">&times;</a>
sem活动营销方案中国信息安全处理企业互联网营销要学什么软件下载网络营销机会分析信息安全等级保护制度网络安全法颁布的意义电信用户信息安全协议书国家信息安全专项介绍信息安全工程师 培训班公司网络安全的通知国家间的争斗,梦境?亦或是现实,新的世界,该如何活下去,真实世界如何变强,两个世界间的切换,两个角色,相同的灵魂。在未来的某一天,一个人生极其平凡的青年被选中参与一项实验,他置换到了一处平行世界。新的人生并没有给他带来什么,宇宙有多浩瀚,他就有多孤独。后来,他发现自己最想做的竟是回到原来的世界。人类文明的进化、病毒变异和外星怪物之间的宇宙关系好不容易将境界修炼到神圣境第九重巅峰,却连番遭遇厄运,身体暴毁却成就了化聻途径,随后进入新的界域,至灵启散乱的意识逐渐归聚,但是记忆残破,至灵启对以前修炼功法的记忆几乎损毁殆尽。因此他只能根据残破的记忆,一边壮大灵魂和聻体,一边努力开创全新的功诀。 经过精心推演和不断完善,终于将科学与神学二者相结合,开创出了高于二者的全新修炼理念《灵学》,以及实际修炼功诀《超微至灵诀》,就此由聻入灵超越仙神,成就至灵之功,从此走上了超越此前所有强者的修炼之路。功成之后,至灵启便将整个太阳系的运行轨迹位置进行了优化复定,并对母星地球的水陆位置分布进行了完善复定,使其灵气充裕更适合人类的生存和修炼。一觉醒来林雨来到另一个世界,不仅如此他还多了一个软萌可爱的小公主。 在别人眼里,林雨是超级全能巨星,在小芒果眼里,爸爸是无所不能的超人。 记者冲出人群,将话筒高高举过头顶。 “林雨先生,表演界称呼您为影帝。” “声乐界称呼您为歌神。” “作曲界称呼您为曲爹。” “作词界称呼您为词圣。” “文学界称呼您为文学泰斗。” “导演界称呼您为无冕之王。” “请问,在这么多赞誉中,您最喜欢哪个称呼呢?” 林雨微微一笑:“我最喜欢,文艺巨星奶爸。” 怀揣梦想,肩负责任,天大地大无所不能,护娃宠娃全能奶爸。我乃计都星下凡,先天便拥有阴阳眼。未出生就遭人算计,不足月被人挖出母体,先天有缺,易招恶鬼,命格犯煞,注定活不过百日。在奄奄一息之际,幸得牛四海相救,从此跟随其生活在一起,耳濡目染,终成一方守界人,自此可与神灵交流,可随意出入地府,逆天改命!民间口口相传着一个故事: 世间本蕴涵丰富的灵气。修道之人浅则延年益寿,深则飞天遁地、排山倒海,超脱万物之规律。 但在400多年前,一位通天地彻的神秘道人不知算出了何种天机,竟不惜魂飞魄散,道行尽失,也要与“天”抗衡。 自那以后,世间灵气变得十分微弱。虽仍有修道之人,但都修行浅薄。与登仙再无机缘。 18年前,一起发生在龙虎山的“离奇盗墓案”让方介白失去了双亲,但是他坚信自己的父母没有死。 也是自那以后,在这座城市里,不断有着灵异的事件情发生在方介白的身上。 这让一个坚信唯物主义的成年人无法用科学理解这些超自然现象,直到方介白发现......六道沉沦,天人崩碎 逆天第一人沉睡祖地,沧海桑田,祖地福荫 十万年太久,只争朝夕! 天月金轮,再起天之战!此身合该诗人未?细雨骑驴入剑门! 张霆玉意外穿越修仙世界,怎堪碌碌一生,做个凡人? 入剑门,得传承,竟成剑门老祖,忽悠他人就变强。 谁言仙路崎岖,长生漫漫? 修仙原来这么简单!地球失去磁场会发生什么?全球大停电,一切电子设备失去信号,鸟类从空中摔下,飞机失事,卫星坠落,接着大气层逐渐远去,强烈的宇宙射线降临地球,占地球表面积四分之三的水不断被蒸发减少。。。如果持续下去地球的生物会逐渐灭绝。好在三十秒之后它回来了,但是被破坏的全球电力网络系统,满地的动物shi体,灾难中丧生的人们,卫星坠落引起的流星雨,这一切都在昭示着这场灾难。殊不知,灾难后相拥哭泣的,慌乱中四处奔跑呼喊的人们,他们将要面临的改变远不止此。
网络安全信息化办公室 中国信息安全处理企业 网络安全审计内容 自己开发网站需要什么技术网络安全检测包含哪些 2016年网络安全年会 石家庄手机建网站 信息安全工程师 培训班 信息安全培训服务,-1 中国信息安全处理企业 网络与信息安全要求 冤亲债主干扰对生活有何影响?咨询【www.richdady.cn】 前世今生查询服务咨询【www.richdady.cn】 化解冤亲债主的有效方法【www.richdady.cn】 冤亲债主干扰的真实案例有哪些?【www.richdady.cn】 失业【www.richdady.cn】 长尾词咨询【企鹅383550880】√转ihbwel 亲子关系的共同成长咨询【微:qq383550880 】√转ihbwel 精神不振的环境影响咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 如何知道自己是否有前世缘份?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 阴间生活的前世因果【www.richdady.cn】√转ihbwel 人际关系不好的案例分享咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的改命技巧【www.richdady.cn】√转ihbwel 公司破产的前世因果【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 孩子不爱读书的阅读环境【企鹅383550880】√转ihbwel 与老公前世的咨询技巧咨询【微:qq383550880 】√转ihbwel 莫名其妙感伤的解决方法【企鹅383550880】√转ihbwel 儿子不读书的前世记忆【www.richdady.cn】√转ihbwel 前世今生的缘分再续咨询【www.richdady.cn】√转ihbwel 如何维护良好的家庭关系?咨询【www.richdady.cn】√转ihbwel 交通意外的常见原因威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 在服务中有效地管理信息安全 满足顾客对信息安全管理的要求 购买型网站建设 公安部网络安全通报局 wifi网络安全解决方案 制定网络营销的策略 国家信息安全专项介绍 以前的域名是非经营性网站备案现在如何转成经营性网站备案 高大上网站建设公司 微博营销的效果预期 2016年网络安全年会 电信用户信息安全协议书 专科网络营销就业前景 怎么做网站 手机设计培训网站建设 网站编程 企业网站建设公司 石家庄手机建网站 国家信息安全产业联盟 服饰网站建设 网络安全审计内容 可信赖的手机网站设计 信息安全与管理评测师 杭州网站建设公司网站营销公司哪家好 公司信息安全教育 企业信息安全 厂商,-1 惠州做网站 网络安全法颁布的意义 3g网站设计 企业建网站的 程序 贵州网站制作哪家好 中国信息安全博士,-1 信息安全不涉及的领域 自己怎样建立个人网站 做公司网站的专业公司深圳 上海网站建设的价格 信息安全与管理评测师 计算机网络安全现状及防范技术探讨 做网站优化时 链接名称"首页"有必要添加nofollow吗? 青岛网站推 广东信息安全公司 cigital公司网络安全 青岛网站推 网站上线后 台州市网站建设 企业网页设计网站案例 西电信息安全专业 聊城网站制作 网络安全培训机构 信息安全测评中心 凌晨 娃哈哈的营销方式 杭州网络安全公司 地址 合肥网站建设公司 怎么制作网站 中国可信计算与信息安全会议 国家网络安全应急处理 给会所做网站 b2b网络营销的问题 2016网络安全(中国)论坛 信息安全个人挑战赛 信息安全人员资质 网络信息安全设计方案 国家信息安全专项介绍 单位信息安全等级保护工作 网络营销需要培训吗 中国信息安全处理企业 可信赖的手机网站设计 信息安全管理体系是指:,-1 可信赖的手机网站设计 被黑的网站 郑州网络营销培训学校 广东信息安全公司 建网站可靠 惠州做网站 广东信息安全公司 b2b网络营销的问题 深圳建网站公司 重庆网站开发设计公司电话 h5 展示 营销方案 linux网络安全技术与实现 第2版 pdf 网络营销的竞争分析 网络营销方式 网络安全培训机构 中国信息安全处理企业 科技公司网站设 企业信息安全管理方法 msn营销 手机设计培训网站建设 中国信息安全博士,-1 青岛网站推 给会所做网站 微博营销的效果预期 中国信息安全法律网 网络安全和管理 高大上网站建设公司 武汉信息安全与人才镇江网站设计 无锡网站推 聊城网站制作 2017年信息安全案例 上海网站建设的价格 网络信息安全设计方案 购买型网站建设 聊城网站制作 邢台建一个网站多少钱 做网站优化时 链接名称"首页"有必要添加nofollow吗? 国家网络安全应急处理 cncert网络安全年会 台州市网站建设 青岛网站建设小公司 自己开发网站需要什么技术网络安全检测包含哪些 b2b网络营销的问题 贵州网站制作哪家好 西电信息安全专业 九江网站建设 自己怎样建立个人网站 身边的营销 网站规划 国家网络安全主题 公司信息安全教育 计算机网络安全现状及防范技术探讨 中国可信计算与信息安全会议 网络营销与消费者心理 flash网站设计 武汉信息安全,-1 无锡建设网站制作 国家信息安全产业联盟 成都网络营销策划 企业网页设计网站案例 国家信息安全专项介绍 网络安全攻击例子 网络安全和管理 顺义手机网站建设 专科网络营销就业前景 cncert网络安全年会 企业信息安全活动 网络安全法颁布的意义