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

<a class="close" href="https://osfc.1465.com.cn/">&times;</a>
网站营销方法有哪些内容建视频网站昆山设计网站的公司哪家好南京移动网站设计建网站代理商ciip 信息安全门户网站信息安全管理条例济南网站营销哪里学营销建网站难吗重庆信息安全评估中心月高悬于空,星不见其影。 沉眠的暴君从历史中苏醒,漆黑的双翼划过破晓的黎明;巍峨古堡跨越了尘封的的记忆,矗立在洛尔维亚的群山之巅。 当头戴王冠的公主睁开双眼,从死亡归来的旅人重新握住剑柄—— 国王湖的水面不再平静,却依旧深不见底。这个世界上没有无缘无故的恨,也没有无缘无故的爱。人们活在一个阴冷的世界里,见不到光明,但亲情,友情,爱情赋予了这个世界另一份情感,这个世界被称作太阳系。一个穷小子,机缘巧合下的一次重生,让他有了重新改变命运和环境的机会,面对家徒四壁负债累累的家庭,面对那个偏僻的小山沟,他一改过去的作风,踏实勤奋,刻苦拼搏,不但让自己和家人过上了受人尊敬的生活,而且,他还积极帮助乡亲,让一个外面闻所未闻的小山沟成为闻名遐迩的富裕之地,最终他的事业走向全国,冲向世界。重生成为敖丙,眼前这小孩莫非是哪吒?难道要成为那个被抽筋扒皮的倒霉蛋?不行,一定要改变自己的命运。 神秘人出现,他要修正那段剧情让敖丙彻底消失。 敖丙顿足捶胸,仰天长啸:“老子怎能让你如愿!” 纣王侮辱女娲娘娘,那就不让他进庙。 什么!妲己已经下凡了?敖丙请旨娶妲己。 “我敖丙是不会让你剧情恢复的。” …… 他拥有令人艳羡的身世,他的的父亲是一国元首,而他的人生际遇却从没有受到过任何优待。 他拥有天生异能,他是传说中十二神石之首--“力量之源”的主人,但是这个异能却总在他需要时失灵。 他资质平平,没有一点武技和魔法的修为,却被上古邪灵看中,成为邪灵寄生体,变成了邪灵的傀儡。 他的梦想只是做一个普通人,但是命运总是跟他开玩笑,让一些不普通的事情跟他扯上关系,让他成为众人的焦点。 一个一心只想成为平凡人的他如何成就了他不平凡的一生,他的一生福兮?祸兮?宇宙初始,源石赋予星球灵气诞生文明。蓝星源石被盗,进入末法时代,有一少年觉醒,踏上奇幻征程。 凤凰之血,涅槃重生,魔刀清玉,黑暗力量涌动,源石之谜,末法时代因灵珠灵气复苏,灵珠和源石有何关系?清玉刀,卦台山,两仪塔,先天灵源,源石,灵珠,又有何关联? 一刀,一人,两棺材,我司钰必将踏平异界镜花水月是一个虚幻的大世界,原来花月容就是那个沉睡的、姓庄的远古人。 觉醒的花月容,意味着镜花水月大世界的崩塌。 “花郝岳袁”组合,他们在一次次跌宕起伏的并肩战斗中,彼此产生了越来越深厚的感情羁绊。对于他们的不舍,花月容不得不有所抉择。 永生不死、绝对自由的造物主身份,花月容会放弃吗?……上古大陆,一位拥有先天全体的少年,因为一次意外,引得黑珠入体,从而导致元力全失,至此他失去了所有光彩,族人的陷害让他认识了师尊,在一个分身的教导下,少年披荆斩棘,过五关斩六将,一步步成为真正的强者...... 为了家族命运,少年踏上了独自修炼的征程;为了亲人,他被迫选择了自己不爱的人;为了爱人,他忍受了无数年的自责。 从一个小小的战士,逐步成长为天元大陆至高无上的古神,而最终,为了整个天元大陆,他却付出了所有......体育+穿越+系统+单女主+热血 穿越到2018年,龙国的苏北成为了湖人的球员,开局就获取了麦迪模板的他,总决赛,19年的世界杯,奥运会都不会是遗憾,还有老大(科比).... 这一刻因为苏北的到来,nba的小球时代所改变!!! 詹姆斯:“苏,他才是最好的球员。” 杜兰特:“什么叫最好的进攻,苏就是最好的教科书!!!!” 萌神库里:“苏,才是这个时代的天花板!!” (这里是平行世界,不要过度带入一些人物和剧情,有一些改动,也有些慢热,总之很爽,很好看。) 炼气者横行的天玄大陆,资质平庸的凌风为了寻找父亲,另辟蹊径,走上了近乎绝迹的炼体之路。   一个神秘浩瀚的世界,在他眼前逐渐展开……
展示用网站 深圳营销型网站建设 甘肃手机网站建设 服务好的网络整合营销 信息安全奖学金 网站建设优化服务价格 信息安全管控 网站开发制作公 2017安徽高校网络安全 网站制作厦门公司 亲子关系的情感交流【www.richdady.cn】 为什么过世的前世修行【www.richdady.cn】 无形干扰咨询【www.richdady.cn】 发育倒退的心理调适【www.richdady.cn】 孩子压力大的解决方法咨询【www.richdady.cn】 家庭关系的心理调适方法有哪些?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 如何判断自己是否被冤亲债主干扰?【σσЗ8З55О88О√转ihbwel 前世今生的缘分解读咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的问题分析【σσЗ8З55О88О√转ihbwel 婴灵的超度与慈悲心【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 事业不顺的心理调适咨询【企鹅383550880】√转ihbwel 亲子关系中的沟通艺术咨询【微:qq383550880 】√转ihbwel 与女友前世的前世案例咨询【微:qq383550880 】√转ihbwel 干扰的自我感知方法咨询【微:qq383550880 】√转ihbwel 如何提高孩子的阅读兴趣?【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 如何了解自己的前世今生?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的续写有哪些方法?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婴灵的安抚有哪些技巧?【www.richdady.cn】√转ihbwel 心慌胸闷头晕的心理调适【www.richdady.cn】√转ihbwel 孩子压力大的教育建议【σσЗ8З55О88О√转ihbwel 青岛营销型网站建设 武汉网站制作 浪潮网络安全 网络安全管理领导小组办公室 有利于优化的网站模板 张店制作网站 2017中国网络安全事件 网站栏目名 手机网络安全方案 关关于信息安全的网站 专家营销 农业网站建设 全国网络安全大赛 大学生信息安全竞赛题目 手机网络安全性 全案营销 c 网络安全 网络营销常见的方式有哪些 网络安全界的名人 廊坊网站制作 莆田网站制作 邮件营销的优 输入网络安全性金?网络营销与移动营销 小黄人微营销系统 邢台建设企业网站 pc端营销 短信营销数据 网络安全风险等级意义 建网站软件 关关于信息安全的网站 网络营销硕士论文 网络营销课程老师 富阳网站建设怎样 重庆专业的网站建设公司 营销型b2b网站 信息安全行业新技术网络安全 暗网 信息安全奖学金 武汉设计网站公司 网站备案后 专业培训网络营销 网络安全建设与维护 青岛营销型网站建设 影楼网站建设 ciip 信息安全 合肥网站建设的公司 网络营销公司取名 2017年的网络安全 信息安全奖学金 郑州网站建设哪家有 昆山设计网站的公司哪家好南京移动网站设计 外贸网站设计 网站设计图 网络营销组织形式 大学病毒营销方案 2017安徽高校网络安全 湖南信息安全测评中心,-1 有利于优化的网站模板 信息安全的研究生 品牌营销推广 营销培训学院招聘 国家信息安全 主任,-1 张店制作网站 互联网营销语句 外贸全网整合营销 waf 信息安全 网络营销组织形式 富阳网站建设怎样 绍兴网站建设 网站栏目名 网络安全 ctf 网站制作策划 2017安徽高校网络安全 专业的外贸网站建设 大学病毒营销方案 昆山设计网站的公司哪家好南京移动网站设计 一键建网站 绍兴网站建设 信息安全的研究生 国外网站空间 下面不属于计算机信息安全的是_.,-1 关关于信息安全的网站 专家营销 淄博网站建设乐达推广 流氓营销 成都高端网站建设公司 网络营销组织形式 网络安全 脚本攻击及其防范方法 国家信息安全小组 信息安全奖学金 集线器可以保障网络安全吗 全网网络营销系统 网络营销战略是什么 网络安全建设与维护 武汉网站制作 四川网络营销 佛山用户网站建站 合肥网站建设的公司 成都高端网站建设公司 信息安全等级保护 证书 外贸网站设计 开源网站管理系统 网站移动端 网络营销公司取名 哪家网站建设好 外贸全网整合营销 国外网站空间 网站移动端 北京网站的建立的 网站制作厦门公司 邮件营销的优 廊坊网站制作 2016信息安全案例分析 国家信息安全 主任,-1 郑州网站建设哪家有 网络安全实战平台 专业的外贸网站建设 waf 信息安全 信息安全服务有哪些 绵阳做手机网站 信息安全行业新技术网络安全 暗网 网站栏目名 网络营销硕士论文 信息安全逆向分类 专业培训网络营销 e mail营销的特点 关关于信息安全的网站 网络营销定价方案 2017年的网络安全 网站开发制作公 waf 信息安全 青岛营销型网站建设 南京网站公司 营销培训学院招聘 哪里学营销 网络安全 开源