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

<a class="close" href="https://2gz.jiee.com.cn/">&times;</a>
水资源营销亚太网络安全网站建设案列网络安全ppt 下载亿玛客营销学院 骗局门户网站策划书淄博做网站公司有哪些重庆网站免费申请做网站平台做网站实验体会90后的我们有的结婚生子,有的还是颠沛流离。有人事业成功,有人收货获爱情,有人情场职场失意。有人富足,有人温饱,有人饥寒。回首二十年我们的成长历程,却有太多的感慨穷了十好几代,你告诉我叶家有个仙尊老祖? 叶不凡不得已,牵着牛儿,开始了一段弑仙屠魔的之旅! 修炼我又快又猛,杀人我又猛又快! 惹到了萧家?大武朝最鼎盛的修真家族? 那得说声抱歉了,因为主角外挂已到货! 纳尼,老祖下线? 不要紧,都不要紧,我和牛儿冲上仙罡杀天尊! 克里斯托与未婚妻艾薇儿出席宴席期间发生的故事…陈东穿越到了一个妖魔邪怪的世界,人命如草芥。 幸好觉醒了被动系统。 灵魂吸收:拾取灵魂,就能增强肉体和灵魂强度。 北方有无头巨人作乱,为祸人间,陈东单手托起一座山,猛然甩出,直接镇压! 西天有天魔乱舞,吞噬魂魄,陈东从天而降,任凭群魔附身,一拳轰出!云层崩裂,诸魔消散!逍遥自然,离奇古怪,理性奇幻。未世来临,无数人变异,无数人死去。人类只能在夹缝中生存,与各种异种周旋,混出一条生路来。姜丰是个小人物,没有什么大志向,可偏偏命运不会放过他,在他的生存路上,无数的危险,无数的恶梦,通通让他碰到,他拼命挣扎,要保全爱人、家人、朋友的生命,也要保全自己的生命,非常难,特别难,但是必须做。 人生逍遥路漫漫,慢修吾心妄烟云, 运极命数皆注定,鼎立混沌独自清。 罄音撩灵安坐钟,终了余生残破魂, 魂归故里望长生,深入宇空宙已寂。 漫定钟生,慢鼎终深。 人运罄魂,云清魂寂。顾星辰,云锦山有史以来最年轻的天师,通阴阳明医术,占卜看相无所不能。五年期满,返回云镇,自此一代天师之名不胫而走。 风水堪舆,易如反掌;不治之症,一针救魂;牛鬼蛇神,一剑平之。 小小云镇,很快就成了首富大佬挤破头都想瞻仰的神圣之地。小小天师,畅游都市,只手定乾坤!一觉醒来,许墨重新回到《世界ol》开启的前一天,再次进入游戏,觉醒隐藏属性【神级幸运】。 队友:许墨,一起下本吧 许墨:好的 副本结束,队友:怎么全是神装啊? …… 队友:一起做任务吧 许墨:好的 任务结束,队友:怎么全是隐藏任务啊? 队友:许墨,一起打BOSS吧 许墨:好的 战斗结束,队友:许墨你还让不让玩了?BOSS都被你的DEBUFF削成小怪了! 表面吐槽的队友,内心已经赢麻了! 明明只是个辅助,怎么就这么欧啊!一个好汉三个帮, 司马龙飞是一个走路都费劲的大胖子,遇见命中贵人龙飞而破茧 成蝶,两个少年嘻笑江湖,指点天下。天纪界300年,人族发展数万年,与魔人对抗千年,终于迎来和平。 天纪界340年,魔人卷土重来。 天纪界341年,全民模拟,选出模拟者对抗魔人。 最后一次临时模拟人生时,觉醒特殊技能:天启! 天启:可以经历分析一切。 获得模拟人生经验越多,天启分析速度越快。 靠着特殊技能,张元一次又一次突破极限,融合模拟人生。 天纪界某某年,魔人被永久封印! 一世:【身患重病,没有战胜病魔,死亡。】 “天启开启,分析!” 【你战胜病魔,成就玄武传说。】 【天启增强,你获得灵源空间,你获得模拟人生优先选择,你获得..】 某世:【二十岁的你,被困魔人捆仙阵而死。】 “天启开启,分析破阵!” 【你分析每一世模拟人生,各方大能见到你的模拟人生,纷纷掉泪。】 【你获得女帝青睐,你获得最强天启,你获得...】 同届临时模拟者,都成为了普通人,苟延残喘。 与此同时,各个平行世界入侵主世界。 张元站了出来,“你们这些被我征服的世界,也敢嚣张?”我天生能看到奇怪的东西,爸妈担心我出事便让我拜师隐藏。可就在一次熟人的胁迫式“邀请”,师傅用两片龙鳞再次揭开了我的秘密,自此,我便走上了一条未曾想过的路??
网站尺寸 武汉建网站 事件营销和公关区别 手机网络安全技巧 网络营销好学吗? 亚太网络安全 网店营销案例 学习网站建设 网站制作案例怎么样 网络与信息安全管理人员配备情况 纠纷的预防措施咨询【www.richdady.cn】 亲子关系的咨询技巧咨询【www.richdady.cn】 婴灵的超度流程【www.richdady.cn】 构建和谐亲子关系的方法有哪些?【www.richdady.cn】 感情纠纷的情感调解咨询【www.richdady.cn】 与男友前世的咨询技巧威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子厌学的咨询技巧【企鹅383550880】√转ihbwel 亲子关系的改善方法咨询【σσЗ8З55О88О√转ihbwel 去世的父亲的前世因果咨询【微:qq383550880 】√转ihbwel 强迫症的前世因果威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 如何改善亲子关系?咨询【σσЗ8З55О88О√转ihbwel 去世的母亲的咨询技巧【企鹅383550880】√转ihbwel 婴灵的超度过程【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的续写有哪些方法?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 特殊学校的案例分享咨询【企鹅383550880】√转ihbwel 与女友前世的识别方法【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 精神不振的前世记忆威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 内心恐惧胆怯的原因分析【微:qq383550880 】√转ihbwel 去世的父亲的前世缘分咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的家庭氛围如何营造?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 网站管理 集团网站建 中国网络安全发展史 网络安全关注的问题 免费网站建设怎样 天融信网络安全学院 网络安全 数据安全 网络安全 数据安全 网络安全logo设计图片南宁市网站建设哪家好 做网站实验体会 营销培训讲课领袖型营销 可信网站认证 网络安全道哥 信息安全自评估报告 什么是事件营销推广 网络安全ppt 下载 中国 外国 网络营销 建行企业网站 中国 外国 网络营销 无敌邮件营销软件为什么发送的邮件被qq邮箱直接送到了垃圾站 网络e营销 成都建设网站首页 网络安全规范 贵州网站建设 信息安全学习 宣传网络安全 亚太网络安全 免费申请做网站平台 网站管理 水资源营销 网店营销案例 网络安全会议 网络安全道哥 丹东网站建设 迭代思维 营销 商业信息安全 丹东网站建设 网络营销课程感想 上海网络安全检测公司排名 中国信息安全标准分类 济南模板网站制作 江苏 信息安全 网络安全讨论 互联网网络营销前景分析 网站流量超 网站管理 河北网络安全事件 宣传网络安全 河南网站建设公 天融信网络安全学院 网络安全logo设计图片南宁市网站建设哪家好 深圳市移动端网站建设 重庆网站 阿图什网站 网红营销平台 微博 网站推广步骤 蓝盾网络安全(二级)测评记录 网站建设案列 网络安全隔离 国家信息网络安全局 网络安全以后去什么单位上班? 大良营销网站建设流程国家信息安全检测 天融信网络安全学院 国网营销 中国网络安全发展史 无锡 信息安全 网络营销的政策 学习网站建设 济南信息安全管理培训,-1 什么是网络安全技术 互联网网络营销前景分析 网站制作公司 顺的 中国网络营销市场分析 龙岩网站建设公司 网络营销的市场定位 三只松鼠 动漫营销 中新网络信息安全股份有限公司怎么样 蓝盾网络安全(二级)测评记录 企业网络安全防护方案 网络营销不仅限于网上 免费申请做网站平台 信息安全自评估报告 公司网络安全管理 网站设计规划书 网络安全规范 网站被收录 网站手机客户端开发 公司网络安全管理 网络信息安全员培训 网站建设周期 微信小程序做网站 网络信息安全员培训 中国 外国 网络营销 小米的网络营销方式 网络与信息安全管理人员配备情况 小红书的红色包裹营销 信息安全等级保护分为 使用微博营销工具应该注意哪些问题 西安做网站 政府网络安全现状分析 营销培训讲课领袖型营销 网络安全防护设备 洛阳建网站 做网站一般用什么语言 青岛日文网站制作 武汉网站设计公司 网站名重复 深圳html5网站建设 亿玛客营销学院 骗局 关系营销优势 网络整合营销谁提出的 网络安全会议 深圳市移动端网站建设 成都建设网站首页 武汉便宜做网站 idc 信息安全管理责任制,-1 网络安全道哥 西安做网站 网络与信息安全事件 武汉便宜做网站 网站建设:中企动力 网络信息安全协议书 网络安全关注的问题 网站建设:中企动力 建行企业网站 网站推广步骤 南京定制网站建设 中国 外国 网络营销 网络营销的市场定位 营销的作用 网络安全黑客漏洞 门户网站策划书 网络安全资料 国网营销 网络安全企业