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

<a class="close" href="https://63vie.xozu.cn/">&times;</a>
网站维护费微网页营销o2o营销-上海单仁信息移动科技有限公司同步营销软件官网网络营销能力秀软文网络安全 逆向微博的网络营销公安部网络安全法网络营销案例评析网络安全教程2015python网络安全我们可以卑微的活着,但不能被上界的人随意宰割。 如果非要选择,那就破了这天!强族高高在上,弱族水深火热,牛鬼蛇神纷纷出笼,大宇内外争斗不休。 因此,伴生神通过初始之地播下“火种”,选拔护道者。 只是,大多数护道者陨落了,就连举起反抗大旗的真龙,龙脊都被炼成宝塔。 后来,有预言说,三神补天,圣人救世。 地球是葬龙地之一,华夏文明的疑似“火种”又遇到袭杀,其中一个婴儿被人救走。 在另一个遥远的宇宙里,葬龙地,来自其他大宇的悟道圣树收养他,为之取名为无名。 无名逃过命劫,却逃不过第三方的“设计”。 他逐渐发现,自己正走在真龙的老路上。 还有,自我既存在,又不存在。 再有,自身半人半魔,非灵非魂,无法通过初始之地成神。 如何解局、破局?如何成神,解救万界? 东方已明,圣人将出。我不证神,以身补天。本书又名《我在三国强行拼团》《三国砍我,我一人砍三国》 刘云穿越到东汉,绑定附身了拼团系统,本想活命发育,偏偏黄巾起义,一个不小心还将刘备给秒杀了,不得已卷入三国时代。 刘云:“开团了,赶紧冲!来呀,砍我呀!这点兵马,砍我都不够,怎么当反派的?” 刘云:“来嘛,切磋切磋,是兄弟,就来砍我,砍一刀,一刀接一刀,完事请你喝酒。” 只见刘云一路横跳,到处强行找人拼团,势力越砍越大。 天子脖子架着刀:“刘云,你再不登基,我就砍自己了。” 异界大陆暗流涌动,九大城相互讨伐,争夺霸权,黑暗组织蠢蠢欲动,大陆已经不和平,人民的生活渐入水生火热之中,因为一系列事件,让默齐凌踏上了一条荆棘之路的路......“又是新书的开始。”王冉推开茶馆的大门,看着陌生的世界,说道。虽然他的故事从未停止......抑郁症患者的自救历程……命运多舛的少年,不谙世事的灵智,两者的结合在九州大陆掀起了阵阵腥风血雨。 在这里也许会看到华夏神话的延续,也许会看到超强的灵宝,也许会看到上古遗迹,也许会看到各种稀奇古怪的异兽,也许会看到魔之本相……热血的战争,痛苦的坎坷。 为报仇,他杀人如麻, 进入仙界,他修炼无上仙法,仙路坎坷,正邪难分,勇夺皇位,为了天地,他遇神杀神,遇魔降魔,他勾心斗角,出卖兄弟,残杀无辜, 但是他却是个好人....... 纪元前的黑暗业已为记忆淡忘,铭记下来的是牺牲,是荣光,是万古的传承。 弹指河山破,挥手江山易的人物早已远去,留下破碎的河山,易道的江河,龟裂的大地…… 一个伟大的人物,造就一个时代;一个致命的错误,毁灭一个时代;一次偶然的相遇,再次开启一个时代。无尽大陆拳之斩道者,于无上之地被出生入死五位战友陷害。 重生后的他,携带无尽大陆天空之城至宝再活一世。 这一世!六合八荒拳所开之处无一人争锋。 我辈拳法可以弱,争胜之势可以输,唯独这一身拳意绝不可退! 唯有不断的挥拳,才可变的更强!
信息安全 体系 淄博网站优化首选公司 网络安全加密 网络营销不仅限于网上 手机版网站设计风格 公安部网络安全法 重庆綦江网站制作公司推荐 dell网络营销案例 营销的误点 网红营销平台 微博 阴间生活的前世案例【www.richdady.cn】 灵性成长工作坊【www.richdady.cn】 人际关系不好时的心理调适咨询【www.richdady.cn】 公司破产的环境影响咨询【www.richdady.cn】 脑部不清晰的生活习惯咨询【www.richdady.cn】 亲子关系的互动模式【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 迟缓儿的咨询技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 去世的父亲的前世案例咨询【企鹅383550880】√转ihbwel 纠纷的调解技巧咨询【σσЗ8З55О88О√转ihbwel 灵魂化解的仪式【www.richdady.cn】√转ihbwel 升迁障碍的职场规划如何制定?咨询【微:qq383550880 】√转ihbwel 孩子厌学的咨询技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 失业的咨询技巧咨询【σσЗ8З55О88О√转ihbwel 耳鸣咨询【www.richdady.cn】√转ihbwel 升迁障碍的职场晋升【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 升迁障碍的职场策略有哪些?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与老公前世的前世修行咨询【企鹅383550880】√转ihbwel 升迁障碍的心理调适咨询【企鹅383550880】√转ihbwel 家庭关系的问题分析咨询【企鹅383550880】√转ihbwel 前世老公的前世故事咨询【σσЗ8З55О88О√转ihbwel 简述网络营销特点是什么意思 信息安全专业人员 微博的网络营销 负责信息安全等级保护工作的监督 对网络营销课程的认识 网络与信息安全现状,-1 暗影信息安全 网站icp备案 临汾网站建设 房产类网站制作商 信息安全分保内容 网站设计建议 重庆网站平台建设 网络安全宣传网站 最大的网络营销公司 哪里的sem整合营销 国家信息安全文章 重庆企业网络营销团队 深圳微信营销推广 网红营销平台 微博 gartner 信息安全2015,-1 华中科技大学信息安全综合设计与实践 公司网络安全方案设计 咸宁网网站 电子工厂网站建设 新浪微博精准营销王 网站建设案列 网站设计建议 重庆网站平台建设 网络安全宣传网站 动力无限做网站 国内信息安全软件厂商 网络安全权威认证 fdd lte网络安全 信息安全专业人员 中央网络安全和信息化领导小组成员 营销型网络公司 全网营销系统是真的吗 网络营销应该这样做 淘宝双十一的营销策略 网络安全宣传周信息 最大的网络营销公司 企业网站维护 信息安全中的des加密算法 搜索引擎营销搜索引擎营销技术论坛 暗影信息安全 网络营销案例工具 淄博网站优化首选公司 网络安全管理培训 信息安全实验室简介 网络安全产品代理 湖北警官学院 信息安全 网红营销平台 微博 建立网站的作用 房产类网站制作商 中国最强信息安全专家 网站统计代码中国信息安全公司 简述网络营销特点是什么意思 灵动网站建设 网络安全问题分析 临汾网站建设 杭州网站建设开发 国家信息安全中心人员,-1 营销型网络公司 高端网站建站公司 单位建网站 兼职网站制作 饿了么营销案例 珠海建网站 南宁网站建设找哪家 人员管理是信息安全 网站设计开发方案 全网营销系统是真的吗 信息安全等级 威胁 网络营销 技术入股 信息安全 自有 微博的网络营销 信息安全安全测试 腾讯公司网络安全 网络营销不仅限于网上 青岛日文网站制作 搜索引擎营销的产生 微信小程序做网站 网络安全调查策划 b2b网络营销的过程 哪里的sem整合营销 备份信息安全 网络营销 技术入股 成都网站建设 对网络营销课程的认识 张家港早晨网站制作 国家信息安全检测个人服务 中国最强信息安全专家 合肥市做网站的公司有哪些网络安全员培训考试 信息安全分保内容 珠海建网站 国家信息安全检测个人服务 三只松鼠 动漫营销策略 淄博网站优化首选公司 杭州制作公司网站 三只松鼠 动漫营销策略 网络营销能力秀软文 江苏营销型网站公司 国内网站制作欣赏 互联网信息安全 国家信息安全中心人员,-1 太原网站优化 网络安全监督管理 企业营销信息平台构建 网站推广步骤 国家信息安全测评认证 湖南微营销 网络安全加密 胶南建网站 同步营销软件官网 人员管理是信息安全 个人备案 可以做企业网站吗 网络安全权威认证 网络安全宣传网站 太原网站优化 国内信息安全软件厂商 关于手机网络安全的 微信营销培训总结 信息安全 体系 乐营销平台 济宁网络安全协会 2013网络安全案例 重庆网络营销服务. 信息安全 体系 网络与信息安全现状,-1 网络营销不仅限于网上 信息安全等级 四级 网络与信息安全现状,-1 网络安全宣传周信息 胶南建网站