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

<a class="close" href="https://iges.3204.com.cn/">&times;</a>
网络安全处罚网站建设排版规定网络营销的优秀案例网站规划与网站建设模板网站建设单位网络安全宣传培训情况网络安全审计 课件seo网站推广方案开通网站后网站改标题中文名《弑星者:红桃皇后》 英文名《Starkiller:Hearts queen》(星际杀手:红心皇后) 2066年全世界经过长期流行病和核战争后总人口锐减至6亿,全球财富被资本家垄断并且统一为地球联邦政府后,人类贫富差距进一步扩大,资本阶级肆意挥霍地球资源,导致地球温室效应持续增加,环境被破坏已经不可逆,一系列恶果导致瘟疫和饥荒肆虐全世界,人类存亡已经危在旦夕....人类争夺资源被迫开始自相残杀,甚至作死发动全球核战争最终导致核污染破坏了整个地球的生态环境,人类在绝望中不断消亡 核冬天来临的废土世界,来自银河系中央掌管46个一级文明的银河帝国全面接管了地球,将地球划分为12区,人类受到了外星文明的压迫与奴役,然而,人类并未完全屈服,获得外星反抗军支持的地球天人组织&amp;lt;弑星者Starkiller&amp;gt;向银河帝国发起挑战...一场牵扯全宇宙战争浩劫全面爆发 2755年,人类开始走向星际文明时代,终端永恒号将是第一艘飞向星际文明的战舰。没错,我们的主角在这艘战舰中。维克特萨摩斯,外号狼或狼夜叉,身高195厘米、体重325斤。背后那刻画出来般的肌肉,直接印出魔神脸般的魔神背。总长3550米的终端永恒号战舰装备了全球最先进的扭空引擎与许多灭星武器…直逼多重宇宙级别,完全可以探索宇宙。此时维克特萨摩斯与他的妹妹维克特爱多琳满脸期待地坐在终端永恒号的指挥室中,他俩谨慎地看着以上船的500名新兵的资料。不知道在浩瀚的宇宙中,等待这502位战士的将会是什么?在未来期限的50年内,这次探索宇宙文明的途中他们是否能完成全体人类交给他们的使命?他们将决定未来的人类文明是否是其他宇宙文明的敌人,太阳系被开发得差不多啦,他们也决定人类的新家园。修仙和历史共存,里面涉及的历史典故和俗语比较多。神州大陆。 修行者追求武道,修武者炼气,诸如战士、剑士等,修道者炼术,有道师、炼丹师、炼器师等诸多职业之分,且道师又分多系,当然也有天赋异禀者武道双修。 一个边陲宗门走出的少年,从残玉中重获修炼能力开始,一路高歌猛进,打造一片属于自己的天下…… 要想世间再无遗憾事,便把苍穹握手中! 我陈剑要当这诸天的大帝! 诶,等等...... ...... 为了验证方才那一拳不仅仅是意外,陈剑一跃下床,找到与师兄只有一巷相隔的墙壁。 提气发力,一拳轰出。 下一刻。 轰鸣声再响,墙壁再一次被轰出了一个大洞,但这一次还未等陈剑咽下干燥的口舌,邻边那间房子里就传来了一声破口大骂声。 “大晚上了,鼓捣你奶奶啊,明天不用干活吗?啊!” 陈剑缩了缩脖子,才发现已经是夜深人静时刻,圣人之言:打扰他人睡觉等于谋财害命,他不敢再去尝试。我们可以卑微的活着,但不能被上界的人随意宰割。 如果非要选择,那就破了这天! 在那个古老的蛮荒时代,神魔纵横,万族林立。上古先民与天争、与地斗,既不能成神,那便创造一条条成仙路。   无数个纪元,无数条修仙路,每一条路都有人走,每一条路的开创也都埋葬了无数的先行者。这一世,一人族少年秉承先民的意志,誓要以手中剑,开辟一条全新路。六道沉沦,天人崩碎 逆天第一人沉睡祖地,沧海桑田,祖地福荫 十万年太久,只争朝夕! 天月金轮,再起天之战!宋清书穿越综武世界,成为武当三代首徒宋青书,本应该是一个神仙开局。 然而宋青书已经杀了师叔莫声谷,还背叛丐帮,正在被陈友谅追杀,随时可能丧命。 就在这时,绝世舔狗系统激活。 绝世武库向他敞开,只要赚取积分,就能疯狂买买买。 九阳神功,买! 凌波微步,买! 战神图录,买! 咦,竟然还有八九玄功和草灭剑诀,难道……未来,一些被抛弃的人走上绝路,在这被命名为大西洲的陆地上“送死”。 “世界人口膨胀,那些不够完美的人还是消失了好。”某位政治界高官的女儿如此说道。 于是每年送一批无法就业或走投无路的人来这个地方。 “很多人会死。”主办方如此断言。 唯一的生路就是徒步走到大西洲南部的殖民地。宣传来这里可以成功的消息骗了所有人。 被称为“第二块净土”的陆地上,遍布生物。她宇文曼——大夏国第一个女皇帝。 坐上龙椅的第一天起,她就成为了不折不扣的傀儡。 本来想着就这样混吃等死,结果突然的一场兵变,连傀儡都做不成了...... 当她再一次夺回皇位时,世人对她依然缺乏认同。 在这个群雄争霸的年代,最弱的女皇,居然在所有人眼皮底下捡了个大便宜。 如果治理这个天下能算作便宜的话... 断壁残垣、饿殍满地、民不聊生... 战争带来了至高皇权,也带来了遍地枯骨。 宇文曼正襟危坐,身边是刚刚被册封的“国姓爷”文泰,殿外站着忠心耿耿、整齐成排的士兵,台阶下是一群诚惶诚恐的大臣。 大臣们曾经跪拜过她,又肆意污蔑她...如今为了日子过得去,只好颤颤巍巍的再次向女皇磕头。 好在女皇的心思还不在他们身上。 因为她是皇帝,所以没有退路——进则生,退必死! 奇迹不会一次又一次发生! 她必须整顿纲纪。 必须让难民归乡、让荒废的良田重新长出庄稼。 必须挥舞利剑,赶走那些盘踞中原的豺狼虎豹......
最新网络安全新闻的网站支付宝网络营销成果 中国网络安全空间协会 网络安全专业证书 广州网站制作 手机网站设计尺寸 信息安全指导意见 苍南网站建设 关注网络安全 2013中国网络安全大会 阜阳网站设计 与公婆前世的前世案例【www.richdady.cn】 前世缘份的修行建议【www.richdady.cn】 内心恐惧胆怯咨询【www.richdady.cn】 前世今生相关【www.richdady.cn】 与老公前世【www.richdady.cn】 亲子关系的情感交流咨询【σσЗ8З55О88О√转ihbwel 缺心眼的表现及成因咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世今生的修行方法咨询【微:qq383550880 】√转ihbwel 升职加薪的障碍分析【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 心慌胸闷头晕的环境影响威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 事业发展瓶颈突破【σσЗ8З55О88О√转ihbwel 意外的前世影响【企鹅383550880】√转ihbwel 与男友前世的记忆解析咨询【企鹅383550880】√转ihbwel 迟缓儿的咨询技巧咨询【σσЗ8З55О88О√转ihbwel 大龄剩女的婚恋规划咨询【σσЗ8З55О88О√转ihbwel 家庭关系的改运方法咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 情感心理咨询在线咨询【企鹅383550880】√转ihbwel 孩子不爱读书的心理分析有哪些?咨询【微:qq383550880 】√转ihbwel 内心恐惧胆怯的案例分享【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 投资项目的自我提升【微:qq383550880 】√转ihbwel 当受到网络安全投诉时 空间信息安全 酒店电子邮件营销案例 广州学网络营销 网络营销的优秀案例 普集网站制作 还有网站吗 网络安全协会活动 珠海网站建设公司 小米内容营销分析 2017 会议精神 国家信息安全 不属于网站后期维护 社会工程学 网络安全 做好的网站如何上线广州h5设计网站公司 家庭网络安全 网络安全专业证书 医疗网络安全解决方案 广东营销网站建设服务公司 邮件营销 模板 网络安全协议有哪些? 饿了么网络营销策划书 手机网站设计尺寸 网络安全ac 排名好的青岛网站建设 网络安全处罚 互联网营销网站有哪些内容 服务好的微网站建设 成都活动网络营销 深圳网站开发公司 单位网络安全宣传培训情况 商城网站都有什么功能模块 实战全网营销是干什么 西安网络营销资讯 西安网络营销资讯 日本在哪一年组建了政府网络安全中心 可信网站认证 网络安全审计 课件 信息安全管理人员 国标 网络 营销 手机 西电2015 信息安全就业 网络安全安全服务 长沙网络营销外包 奥巴马营销 互联网营销网站有哪些内容 佛山学校网站建设 网络安全评估 公司 国家信息安全等级认证证书张店制作网站 国防科技大学信息安全 眉山网站建设 关于网站建设新闻 商城网站都有什么功能模块 全国信息安全大会 2014 服务好的微网站建设 眉山网站建设 网络安全ac 学网站设计 邮件营销 模板 网络安全ac 国网公司网络安全定位 中国网络安全空间协会 2017 会议精神 国家信息安全 西安信息安全培训班 上海专业做网站公 西安网站建设案例 酒店电子邮件营销案例 网络安全从业者证书 信息安全与无线网络 企业网站策划方案 论坛营销案例 网络营销对传统营销模式的影响 安阳做网站 海尔公司营销策划 信息安全专业正,-1 佛山做网站 网络安全 blog 社会工程学 网络安全 建设手机网站费用 视频营销优缺点 关注网络安全 网络营销的优秀案例 第三方网络安全资质 网络营销人群分析报告 济南网站推广 2013中国网络安全大会 网站规划与网站建设 网络安全防护公司 业务信息安全英文 bswifi网络安全管理 网站地图制作 业务信息安全英文 网络营销的优秀案例 湛江有那些网站制作公司 广州网站制作 家庭网络安全 阜阳网站设计 城市分站网站设计 婚纱网站设计 信息安全治理成熟度模型 海外营销邮件 引擎营销收费 长沙网站制作 大连企业网站 公司网站的开发和网版的重要性 展示型网站制作服务 网络安全评估 公司 长沙做网站 19网站建设 信息安全虚拟机,-1 当受到网络安全投诉时 网络安全攻防作业 县级网站 公安部网络安全研发中心 建网站代理商 建设手机网站费用 网络安全防护公司 中山移动网站建设报价 信息安全技术 网络安全等级保护基本要求 知名营销 软件信息安全讨论网络营销是指以互联网 网络信息安全教材,-1 2017网络信息安全峰会 网络营销如何提高业绩 公安部网络安全研发中心 网络安全安全服务 网站首页制作 武汉微信营销公司 2013中国网络安全大会 网络与信息安全 cia,-1 当今信息安全局势 深圳市网络安全公司排名 下面( )不属于网络安全技术 网络安全信息图片 网络营销事件地产 普集网站制作 单位网络安全宣传培训情况