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

<a class="close" href="https://7777zccom.1200.net.cn/">&times;</a>
网络安全的防范方法济南网站建设企业关于信息安全的比赛信息安全的cia义乌网站建设北京信息安全中心地址网络营销策划师网络营销的价值是什么意思信息安全 十三五网络安全机构希瑞尔已是整个宇宙最为强悍的存在之一!无界妖瞳赋予了他洞悉一切奥秘的能力,可他此刻却无法看清身前女子的面容!在那团绝对深沉且有些扭曲的黑暗之中,潜藏的才是整个宇宙最终的宿命!也是他和她之间故事的结局! 我秦飞,这辈子,有刀,有守护之人,足以。  少小离家,拜师学艺,重重考验,报效国家,成就一生!经历了一次又次超越生死的爱恋,发现两人竟然从小就相识!是命运的安排,还是机缘巧合?一个学渣阴阳先生的成长史,尽在《成阳灵异事件》。   作者在每章后面都有互动的环节,希望各位读者大大可以踊跃提问,作者会知无不言,言无不尽。神魔复苏,天地动乱。天域?牢笼?于凡夫眼中的天人,或许才是最卑微的人族。我明征天人古族后裔,吞吐天地灵力,淬炼肉身宝藏,血宝无灵源,其刃当无敌。谁语凡夫堪蝼蚁?剑下神魔只称臣。萧落穿越到鬼怪横行的世界。 妖魔肆虐,天灾降世,妖灾现世化作人间炼狱。 无穷的妖魔、诡异带来恐怖的杀戮与噩梦。 萧落开启了功法羁绊系统,只要建立羁绊便能提升武学,进化功法! 叮!金钟罩提升至第十二层, 叮!龙游刀法融合至第二十一层 一个人、妖、魔共存的世界。平静的外表下危机四伏,各方势力蠢蠢欲动。中土、远东、极北、蛮荒、地下城等各方势力暗自角逐。整个世界即将破碎… 王星澜一个平平无奇的游侠儿,因他的到来加速了世界的破碎。但物极必反,他的到来也让即将破碎的世界萌生出来一次愈合的力量。 一次又一次的冒险中,王星澜加入了一个神秘的组织,结识了志同道合的朋友,同时也逐渐明白自己来到这个世界的目的,他所承载的使命…… 聪慧的游侠、内秀的术士和古怪的女盗贼。奇葩的伏妖小队终将成长为一方巨擎!大岩王朝末期,异族南下入侵中央腹地,大量院寺随着沦陷城市化作焦土,院寺镇压之妖魔鬼怪借机增强实力,为非作歹。焱朝初立,除京师在天子龙气镇压下稍的安宁,全国各地均深受魑魅魍魉之害。有甚者边疆数郡衙门无法正常办公,官军损失惨重。焱武定祖震怒,命宣承省责巯部广纳天下能人异士,设从四品官职云游四方整顿魔害,此官所至之处,如天子亲临。三年后,天下平定。此官职为后世历朝沿用,至赤梓国变,央联新立,此官转为机密官职,承归总统府乾阎卫直接管辖。 此官名为:云游巡按使。仙路诡奇,人道卑微。 众生皆浮屠,仙心如寒霜。 少年方尘意外获得仙缘,心中却只有一愿:愿以手中仙剑,开万世太平!扑街漫画家重生到异世界,发现这个世界的科技明明比原来的世界还牛逼,但是漫画和游戏却还停留在原世界90年代。 这让黄梁欣喜不已,“哈哈哈,既然如此就别怪我当文抄公啦!” 高达!龙珠!超时空要塞! 无数经典漫画的出现让半夏走上了人生的巅峰 直到某一天,一个叫做尼克弗瑞的卤蛋敲响了黄梁的家门 灵气复苏,人族觉醒,万族共生。 李峰身怀冥神血脉,可驭使无限亡灵。 “什么?你喜欢以多欺少?” “那正合我意,我只有亿点点帮手。” 单挑都是弟弟行为,群殴才是男人的浪漫。 那一日,诸国强者兵临华夏,万族生灵肆虐城邦。 李峰身骑万丈骨龙,百万阴灵踏破凌霄,“焚我残躯,燃我热血,枪兵所指,一往无前!”
三只松鼠干果营销方案 优优营销软件 网站建站 seo 内容信息安全专员 龙岩网站制作 web网络安全工具 微信营销的目的 网络安全系统 网站信息安全员,-1 营销微信稿 特殊学校的教学方法咨询【www.richdady.cn】 家庭关系【www.richdady.cn】 事业不顺的心理调适咨询【www.richdady.cn】 纠纷的法律援助咨询【www.richdady.cn】 前世今生的缘分如何解读?咨询【www.richdady.cn】 脑部不清晰的案例分享咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婴灵的超度与家庭和谐【企鹅383550880】√转ihbwel 灵魂治疗与心理辅导咨询【企鹅383550880】√转ihbwel 前世因果化解方法【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 冤亲债主干扰有哪些案例?【微:qq383550880 】√转ihbwel 升迁障碍的自我提升咨询【σσЗ8З55О88О√转ihbwel 大龄剩女的婚姻建议威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 升迁障碍的心理调适【企鹅383550880】√转ihbwel 孩子不爱读书的心理分析威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的重逢有什么迹象?咨询【微:qq383550880 】√转ihbwel 自闭症咨询【微:qq383550880 】√转ihbwel 家宅磁场的检测工具威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 纠纷的法律咨询咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世今生的轮回存在吗?【企鹅383550880】√转ihbwel 外灵的预防措施咨询【企鹅383550880】√转ihbwel 网络营销的职责中国信息安全技术大会,-1 网络安全与管理 ppt 陕西手机网站建站 谷安 信息安全意识手册 网络安全公众号 上海营销型网站制作 营销资料下载 网络营销可信吗 人网站建站 政府网站 建站 网络营销师在哪里考 为什么有些网站搭建的是php其所有网页均已.htm命名 专业企业网站建设定制 银行 情感营销 短信 大数据与信息安全ppt 信息与网络安全监察 网络营销策略翻译 x网站免费 沪江网络营销 网站信息安全员,-1 发改委信息安全专项 创手机网站 人网站建站 网络信息安全的真相pdf,-1 石家庄网络安全管理局中央网络安全和信息化领导小组 网络营销商家 深圳网络安全专业 学网络营销的学校 徐汇微信手机网站制作 概括 病毒营销特点 网站建站 seo 网银网络安全方案 论坛如何做病毒营销 深圳网络安全专业 网络安全管理小组 网站转微信小程序开发 网站建设 甘肃 网络营销策划师 如何做好网络营销投资 衡水做网站公司 网上营销渠道 网络营销师在哪里考 衡水做网站公司 关于信息安全的比赛 域名系统网络安全保障 网站信息安全员,-1 网站制作培训 优优营销软件 为什么有些网站搭建的是php其所有网页均已.htm命名 局信息安全 基于基因网络安全检测 专业的网站设计师 沪江网络营销 天津网络营销 企业的网络营销案例 信息安全流程框架,-1 网络营销人性化 核心机房的安全规划物理安全链路安全网络安全系统安全信息安全 河南信息安全对抗赛 网站和后台 网络安全与中国方案设计 网站与微信 汽车网络营销策划书 信息安全专研 facebook营销推广范本 淮南网站建设 网站建设设计 如何做好网络营销投资 深圳网络安全技术公司 虎门做网站 淮南网站建设 上海信息安全监测中心 专业网站设计建站 中山营销型网站设计 上海信息安全监测中心 微信营销处于什么阶段 大数据与信息安全ppt 电商客户营销软件 网络安全策略的制定原则是( ). (3分) 网站建设 甘肃 关于开发活动的信息安全要求 厦门网站seo优化 信息安全 十三五 电子商务网上营销平台 洛阳网站设计昆明云南微网站建设 信息安全的cia 设计网站的目的微信网页版信息安全吗 揭阳网站建设 汽车网络营销策划书 网贷网络营销 网站常用颜色 网络安全与管理 ppt 信息安全定级备案 2017年信息安全会议 西安专业网站建设服务 网上营销渠道 x网站免费 广而告之微信营销平台 专业的外贸网站 互联网信息安全中心 广告 "爬虫" 网络营销实训ppt 物理安全网络安全应用安全 微信群营销教程 蘑菇街微博营销 网络安全策略的制定原则是( ). (3分) 淄博网站推广 智能qq邮件营销系统 高校网站首页设计 人网站建站 x网站免费 美团营销推广流程 深圳网络安全技术公司 聚美优品营销ppt 兰州网站建设报价 中小企业网站制作 中山营销型网站设计 网络安全系统 星巴克和微信营销 兰州网站建设报价 谷歌网站建设 邢台网站建设 昆明企业网站开发 政府网站 建站 q群营销 蘑菇街微博营销 大学生信息安全 计算机网络安全实训报告 陕西手机网站建站 网络安全机构 信息安全流程框架,-1 2017年信息安全会议 中国网络安全 制度 高端大气的综合性网站 网络安全的问题 谷安 信息安全意识手册