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

<a class="close" href="https://4vix.pieng.cn/">&times;</a>
2017年网络安全周 天津网站建设深上海市网络信息安全电脑 手机网络安全做公司网站的专业公司深圳微整网络营销2017年网络安全周 天津长春网站制作托管网站fdd lte网络安全科技战争无限恐怖,核武威慑笼罩世界。新生代战神,逆势而上,以杀止戈,秀出无限风采。赵明获得为师传道系统,只需要成为别人的老师并且教授给他们知识就会获得奖励,只是这个知识有些奇怪? 叮~您来到丧尸末日的世界,人性的丑陋每时每刻都在这个世界当中上演,请传播舞蹈知识。 叮~争霸星域,逐鹿银河,您来到诸神的世界,请传播无神论主义的思想。 叮~您来到了邪神所掌握的世界,在您有限的生命中请传播爱与正义之道! 并且系统为了调动宿主积极性特意制定一个特殊的惩罚规则,如果宿主没有在规定时间内完成任务,包括并不限于宿主会丢失一部分男性特征,连续没完成多次任务将会被抹杀!打架其实并不是一件多华丽的事情,有的人三两下被打趴下就再也爬不起来了,根本不存在那种斗来斗去如同功夫切磋一般的场面。我林玄策纵横仙界万年,从来没有怂过任何人! 当然也有翻车的时候被汪小儿逼到自爆。 我阴差阳错下回到了修仙之前的凡界。 之前天尊的道基还在,修炼像喝水一样。 才发现这里的人都好弱啊。一介凡人意外闯入修仙世界,成为一名资质普通但向道之心甚坚的修仙者。 仙路崎岖,长生漫漫,虽千万人,吾往矣!XX年间,天下大乱,群妖四起,官兵横行,百姓民不聊生。 天上众神,心疼百姓,特派紫微星下界,斩妖除魔,匡扶正义,救黎明于水火。 紫微星领命,下到人间,化身一名女子,隐居山间,观察人间百态,看遍民间疾苦,可悲可叹!三年前,他家道衰落,被迫退婚! 三年后,他功成名就,强势归来! 作为战神,为了龙国安宁,他选择放下昔日仇恨;可让他没有想到的是,同袍竟利欲熏心,与仇人结盟谋害自己! 所幸天无绝人之路,林天权大难不死! 三年前,他能成就一方战神,三年后,他依旧能以天人之姿,让那些陷害自己的人,付出百倍、千倍代价!成长是一条充满荆棘血腥之路,有痛苦,有折磨,有蜕变的希望! 且看颜小天一个颓废少年,走出不一样的精彩成长崎岖路! 张凡本是地球上的一个普通饭馆的厨师,在一次饭馆发生爆炸以后意外死亡。穿越到了异世界,这是一个神奇的大陆,张凡穿越到一个被遗弃的婴儿身上,看着没有看见过的异兽缓缓向着他走来,一点办法也没有,他着急的想说“有没有啊?快来救救我。”可传出来的只是一声孩子的啼哭声……一场大地震,让返祖狂潮席卷全球。 动物、植物、人类,都在这场灾变中,变回自己祖先的模样。 武者、修士、妖鬼、仙人、恐怖的鸿蒙古兽…… 返祖的次数越多,返祖的祖先越古老、强大。 就在所有人都好奇会返祖成哪位祖先时。 李响惊讶发现,自己可以主动选择返祖对象。 第一次返祖,别人都觉醒武者祖先,李响却选择了武侠时代最后一名炼气士——张三丰,以内家拳、太极剑、丹道,震撼世人。 接着是第二次返祖,第三次返祖…… 直到第九次返祖,李响看着迎面走来的鸿钧虚影,露出了无比灿烂的笑容。
重庆整合营销哪里最好 重庆网站开发设计公司电话 深圳信息安全评测中心 网络信息安全网 成都学校网站制作 微博营销有哪些内容 联通网络安全 软件开发信息安全考试,-1 通辽网站制作公司 中国网络信息安全战争 发育倒退的医学检查【www.richdady.cn】 特殊学校的课程设置【www.richdady.cn】 纠纷的法律援助咨询【www.richdady.cn】 缺心眼的案例分享【www.richdady.cn】 灵魂化解的具体步骤咨询【www.richdady.cn】 婴灵的超度方法咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 公司破产的环境影响咨询【σσЗ8З55О88О√转ihbwel 家庭关系的问题分析咨询【www.richdady.cn】√转ihbwel 去世的母亲的前世记忆咨询【企鹅383550880】√转ihbwel 升迁障碍的职场晋升咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 干扰的预防与化解咨询【www.richdady.cn】√转ihbwel 无形干扰的心理调适咨询【σσЗ8З55О88О√转ihbwel 耳鸣的环境影响【www.richdady.cn】√转ihbwel 与女友前世的因果关系威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 长期头脑混沌可能是哪些疾病的前兆咨询【www.richdady.cn】√转ihbwel 冤亲债主干扰的心理影响【企鹅383550880】√转ihbwel 邪灵的定义与特征【www.richdady.cn】√转ihbwel 灵性成长工作坊咨询【企鹅383550880】√转ihbwel 暗恋的原因分析咨询【微:qq383550880 】√转ihbwel 意外的前世解析咨询【企鹅383550880】√转ihbwel 深圳网络安全快速考证 信息安全矩阵 中国网络信息安全战争 网络信息安全与保密的威胁有 网络安全培训 下载 网络信息安全政府 赣州网站制作 信息安全 gpu网站策划制作公司 信息安全之业务安全 重庆整合营销哪里最好 2016网络安全(中国)论坛 网站内容的实现方式 茶叶广告营销案例 fdd lte网络安全 信息安全管理体系是指:,-1 长沙做网站 无锡网站推 工业大数据信息安全 网络安全测评教程 杭州电子科大大学信息安全专业 信息安全攻防 无线破解 太原优化型网站建设 营销管理 畅销书 自己怎样建立个人网站 网络营销的组合 周汉华 网络安全 网站上线后 social营销是什么意思 长春网站制作 互联网个人信息安全 信息安全等级保护 年限 网站中如何嵌入支付宝 公司网络安全管理方案 网络安全 打击 成都学校网站制作 托管网站 网络安全信息化办公室 网络信息安全与保密的威胁有 龙岗网站制作资讯 营销策划案的理论意义 网络安全十三五规划 河源网站建设 网络安全技术的新认识 信息安全实践 网络安全产品销售 万脑网站建设 联通网络安全 青岛模板化网站建设 陕西信息安全管理中心地址 软件开发信息安全考试,-1 托管网站 企业建网站的 程序 信息安全服务平台架构 微博营销有哪些内容 北京做网络安全的公司 财政部网络安全 计算机与网络安全实用技术 做公司网站的专业公司深圳 山西网站设计 信息安全防护规范 信息安全服务收费标准 北京做网络安全的公司 计算机网络安全现状及防范技术探讨 2016网络安全(中国)论坛 微信营销成功方案 好网站范例 河源网站建设 网络营销的组合 信息安全管理体系是指:,-1 网络安全黑客漏洞 营销核心 网络安全培训 下载 建论坛网站 网站建设一条龙 做网站群的公司 中国风配色网站 网络营销证书查询 信息安全风险分析过程中所要完成的工作计算机安全事件发生的可能性 重大信息安全事件包括 2017年网络安全周 天津 太原优化型网站建设 网络安全技术的新认识 以前的域名是非经营性网站备案现在如何转成经营性网站备案 茶叶广告营销案例 微博营销有哪些内容 dnc网络安全 重庆整合营销哪里最好 主机信息安全审计系统 网站空间租 高端公司网站 信息安全工作总体方针和安全策略,-1 小红书营销策略分析 卡通画风的网站 重庆整合营销哪里最好 如何做好信息安全 广东信息安全测评中心 财政部网络安全 网络安全工作人员培训 社会化营销的特点 网络安全产品销售 营销管理 畅销书 中新网络信息安全 长春网站制作 专业的网站建设 美国计划于2015年建立哪三支网络安全部队 中国信息安全测评中心 漏洞 定义成都 网站建设 信息安全矩阵 网络营销就业方向 三零信息安全有限公司 银行网络安全风险评估 长沙定制网站 济南网站推广做网站编程 网站上线后 网络营销的支持度 广东信息安全公司 现阶段营销信息被自动地快速复制扩散或群发的方式主要有 重庆璧山网站制作公司推荐 软件开发信息安全考试,-1 以前的域名是非经营性网站备案现在如何转成经营性网站备案 国家网络安全支撑单位 支付营销 装饰公司做网络营销 信息安全等级保护初级测评师,-1 新型网络安全技术 成都学校网站制作 中央网络安全管理小组 建网站推广 太原制作网站的公司哪家好 太原免费网站建设 提供网站建设的公司 如何做好信息安全 京东网络营销推广策略 网络安全产品销售备案 医院网络营销是什么 台州市网站建设