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

<a class="close" href="https://x1r.78880.cn/">&times;</a>
信息安全的案件,-1网络广告营销永久免费建站网站中央网络安全信息安全与管理警校,-1支付宝全网营销软件天津电商网站制作营销综合管理首页网络安全 标准张新 网络安全与管理这是一个科技,神灵和神秘力量共存的世界,这个世界上,只要有野心有能力的人都有可能成为世界的顶点之一。 而就是这样一个充满危险和斗争的世界,出现了一股清流。 这是一群普通人为了各自目标启程的冒险之旅,也是改变世界的故事。 打工?打什么工,赶紧给我去拯救世界。 本文不是穿越无敌文,也不是系统后宫文,请提前规避 碧波荡漾的归墟海,一万多座如珍珠般的岛屿,大的纵横数千里宽,小的只有几里宽,点缀在广阔的归墟海域,称之为归墟群岛……五代十国,乱世风云,后周显德年间,佛劫降世,佛门高僧入世消劫,引发了诸多江湖儿女的家国情仇,为天下太平演绎岀荡气回肠的传奇故事……   寂寂夜空孤月寒,十七年离别茫茫。一念执真,南风绿依,盛颜银发证衷肠。   最是有情“负情蛊”,三年生离道心初。剑啸弦荡,逍遥慕云,一念倾情一生终。   啸引苍波,漫卷山河,心志难酬朱颜改。孤情骄阳,若玉独镜,小楼空照人何在?   日月无改江山裂,金戈铁马雁泣血。渊鱼更龙,世宗执戟,风起云涌荡山岳……   一缕清风,人间太平吹拂……这是一个以御兽为主体的世界,人们与动物,机械,恶灵,花草树木契约,灵兽的力量如此强大,可最大的问题仍在人与人之间在这个世界里,跨界石,是一种神奇的东西。相传上古时期,轩辕姬得之,拥有掌控南北两极之能,所以控磁场,造司南。大禹得之,拥有排山倒海之势,所以治江海。? ?...... 而觉醒职业和灵器,是这里每人都渴望的事。 雪擎,一个被祝福和诅咒同时缠上的少年,即将开启一段传奇之旅...... ?大千世界的战武司少宫主墨染,集万千荣耀于一身的存在,在自己十二岁生日时被战武司司主要求寻找自己的命运之人,尽可能解除死亡的诅咒。但让墨染没想到的是,这一去,来到了结界边境处一个落后位面,在这里,他……幸运与不幸,冥冥之中自有定数。幸运也好,不幸也罢,既然来到了这世间,怎么也得好好看看,这是个怎样的世界!     叶无缺叶无缺穿越到异世界,激活“最强宗门系统!”   本想混吃躺平的叶无缺,被徒弟误以为师傅行事低调。   随后打脸各地天骄,老祖,只为悍匪宗门杨名!   “天骄?不好意思!我们只收有缘人”   快跑啊!悍匪宗来了,这群强盗又要洗劫宝库了!   天杀的悍匪宗,简直不当人啊!   各大势力老祖纷纷掩面哭泣,跪求叶无缺飞升!   穿越到异世界,激活“最强宗门系统!”   本想混吃躺平的叶无缺,被徒弟误以为师傅行事低调。   随后打脸各地天骄,老祖,只为悍匪宗门杨名!   “天骄?不好意思!我们只收有缘人”   快跑啊!悍匪宗来了,这群强盗又要洗劫宝库了!   天杀的悍匪宗,简直不当人啊!   各大势力老祖纷纷掩面哭泣,跪求叶无缺飞升!「你这外乡人既然觉得关内的人心太复杂,当初你又为什么会从关外进来呢?」 面对这个问题,谢佳晨只是回答:"我只想找到回家的路,没想到事情会发展成这样子。" 「我看你是找死!」 夜良游漫不经心地回应,连夜府独门身法「瞬息闪」都看不明白的人,恐怕被别人杀了都不知道对方是谁,这样的人在烈州还能修炼到化龙境巅峰,真是奇迹了。 「人世间的事情是很难预料的,再加上每个人不同的强烈欲望,从而形成这江湖上的格局。」 「朝堂,分为两派,一派主战一派主降,在统治者的视角看来,主战的怂恿之人该杀,主降的苟且偷生之人该死。」 「宗门,是培养人才的地方,处于最弱方,仅靠着门下那几颗璀璨的新星得以正常存在下去。」 「天行健,君子以厚德载物。」 「集打工人、房奴、社畜于一体的小谢因为一场车祸,导致灵魂被撞飞到了异界龙魂大陆,在这个集宗门、江湖、庙堂于一体的世界中,倒霉的他该如何生存?被黑白两道追赶地走投无路,黑化后的他又是如何的恐怖?」天道陨落,生命祭献,少年轮回,叙写传奇。且看,无双天骄,翻手天初,覆手天末,天临世间!
温州网站推广 信息安全有哪些应用平台信息安全险 cisp注册信息安全专业人员 安徽电信网络与信息安全管理部 汉中建网站gb/t 20270-2006 信息安全技术 网络基础安全技术要求 企业品牌类网站 淘宝营销学 中央网络安全 昆明网络营销网站 分析企业网站和搜索引擎两者在传递网络营销信息方面有何不同 互联网营销模式 微店 网站页面组成部分 广州网站制 信息安全保护二级证书 佛山企业网站建设平台计算机网络安全漏洞 全网营销服务有限公司 中国信息安全认证中心特点 全国大学生信息安全竞赛成都 沈阳科技网站建设 网站品牌推广 网络营销产品组合 广州好的广告公司能独立承担汽车品牌营销策划推广服务 永久免费建站网站 营销研究 搜索引擎营销的发展 邢台网站建设服务 沙井建网站 精美网站 工作+信息安全 凡客建网站 企业品牌类网站 生鲜网络营销目标 搜索引擎营销的含义与分类 网站建设超链接字体变色代码 营销策划平台 北京网站建设公司案例 网络安全方案建议 网络安全 标准 网络安全实验室上传关 微信网站设计 有免费的营销软件吗 张新 网络安全与管理 网络广告营销 辛集做网站 全网营销服务有限公司 公司网站定制 信息安全在线实验室 搜索引擎营销思路 中小型网站设计公司 营销活动培训班 控制系统信息安全 网站色彩 信息安全专业竞赛 信息安全与管理警校,-1 it产品信息安全认证证书 北京网站建设公司案例 电子信息安全 网络管理与网络安全 服务是软营销 分析企业网站和搜索引擎两者在传递网络营销信息方面有何不同 国内全屏网站有哪些 建网站后如何维护 信息安全咨询服务 专业的西安免费做网站 网络营销1对1上门培训 天津电商网站制作 cisp注册信息安全专业人员 最新企业网站系统 信息安全风险管理指南 昆明网络营销网站 珠海专业网站制作公司 沙井建网站 最新信息安全新闻 网络发布信息安全 网络营销学文稿 网络营销学文稿 网站色彩 手机版商城网站都有哪 些功能 重庆整合营销的公司 网站页面组成部分 哈密网站建设 微网站建设 浙江网络营销好的公司排名 网络安全技能大赛 企业 基于tcp/ip安全体系和网络与信息安全理设计安全方案 网络技术营销网络安全 内容安全 网站子域名 企业网站的意义 淘宝营销学 信息安全属于哪个学院 西安网站制作 网站功能及报价 专业柳州网站建设 吕梁网站建设 网络安全面试 网站学什么 永久免费建站网站 规范网络营销 英语作文 网站关键词 中国中央网络安全和信息化领导小组 信息安全测评机构的资质认定 信息安全专业竞赛 凡客建网站 永久免费建站网站 互联网全网营销公司 搜索引擎营销的发展 营销型网站建设哪里有 信息安全的案件,-1 网络安全技能大赛 it产品信息安全认证证书 网站建设超链接字体变色代码 网络安全方案建议 北京高级网站建设 点网站建设 嵊州网站 2017武汉信息安全大会 sms营销 精美网站 临沂网站设计 武汉网站设计 专业的西安免费做网站 网站关键词 营销小技巧 互联网营销模式 微店 汉中建网站gb/t 20270-2006 信息安全技术 网络基础安全技术要求 信息安全服务市场现状分析 网站学什么 电子信息安全 微网站建设 建行个人电子营销平台 南平网站建设 营销技巧吧 信息安全大学排名2016 企业 基于tcp/ip安全体系和网络与信息安全理设计安全方案 总参网络安全防护中心网站建设策划方案 手机网站建 建一个免费网站 长沙商城网站制作 搜索引擎营销的含义与分类 信息安全包括数据安全和 2017武汉信息安全大会 网站子域名 网络信息安全难学吗 信息安全有哪些应用平台信息安全险 网络事件营销的优缺点