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

<a class="close" href="https://hfs.5491.com.cn/">&times;</a>
网络信息安全好学吗信息安全屏保图片网站的栏目信息安全等保测评网络营销概念江苏网站制作企业互联网信息安全解决手机网站例子聊城 网站建设合作网站登录制作很多事都是听说过或者经历过的真实事,但是大家别较真啊。这毕竟是小说每个领主都希望拥有不要钱,老实听话,对敌人勇猛战斗的手下。 可当他们知道落日城的子民后,瞬间就不淡定了。 疯狂想将这样的平民掠夺过来。 因为他们不但不需要发工资,还主动上缴属于自己的战利品。 落日城领主的每个命令他们都会没日没夜的去完成,甚至为此付出生命。 当敌人来入侵,没有人比他们更加兴奋,前赴后继的投入战斗。 而作为回报,他们只想要一些小小的经验值,和会发光的武器。 为此,莫雷只能感慨,不是我不给,是他们不要啊!。。。蓝星历2099年,全球最神奇、最火爆的游戏《超元宇宙》投入运营的第四十九个年头。这一年,游戏中一个命名“圣域”的新地图突然开放,再次震惊了全世界! 故事,由此而开始……五十年前,先帝国师玄机真人曾预言帝国五十年后必有祸乱,届时可能生灵涂炭、血流漂橹。先帝问其破解之道,玄机真人打开转轮镜,转轮镜上印出一行字“星冥渺渺,纷争不休,欲解此道,天璇武极”。不久先帝暴毙,国师亦不知所踪...... 乱世之土,命如蝼蚁。 杀人放火,唯见真我。 仙道茫茫,无数修士如同过江之鲫,都想登天一途,炼气、筑基、结丹、元婴..... 尘世间的一叶浮萍,不甘就此飘零浮沉! 苟凡尘,争修行,踏仙路!二师兄被人忽悠进了元宇宙,以为站在了时代风口,可以飞起来了,万万没有想到,却成为人生负翁。老父亲气急交加,扇了他一巴掌,竟使他具备了人机对接、信息迁移功能。此后回到老家农村,搭建了自己的元宇宙,开始了自己的加挂创业模式......一直的不甘,现实的残酷与无奈,生活职业家庭,明明就是为飞扬而生,偏就浑浑噩噩的走近终点个,奇妙的经历后,居然能够大器晚成? 年少的懵懂无知与清贫的前行,青春的躁动却总是无疾而终,内心狂躁却又总是克制的波澜不惊,处处矛盾冲突,这也许就是扭曲的人生.强子、秃鹰、梁叔各怀鬼胎的三人在机缘巧合下到会稽山寻觅黄龙玉,半路上遇到枭,经历一系列事情后决定结伴寻玉。待其进入会稽山中的洞穴后发现了一个神秘潭——汇龙潭。围绕着汇龙潭展开了一系列探寻“天眼”神秘力量、寻找阿尔法通道及探索的经历。在一系列经历过程中,三人各自的多重身份逐一揭开,同时人性中的扭曲与复杂也一一呈现。最终发现“天眼”神秘力量其实源于内心——佛魔居方寸,善恶一念间。 在寻找“天眼”神秘力量和阿尔法通道过程中,葛钰、阿郁和龙王先后出现,伴随着一系列的阴谋、阳谋犬牙交错中,阿郁和强子的真实身份逐一浮出水面,他们自以为天衣无缝,岂不知这一切被“天眼”一览无遗。正当其自以为即将大功告成之际,却惊讶地发现:他们自始至终都是上峰手里的棋子,而上峰也不过是自己欲望的奴隶。可谓:机关算尽太聪明,枉送了小辈们性命。而所谓的“宏图伟业”也不过是黄粱一梦,徒增笑料而已。其实“天眼”神秘力量就在人心而已。“什么?原来我是恶魔?” 十六岁那天,‘穿越者’阎墨终于等来了属于自己的灿烂。 ------------------------------ ‘普通人类’加入恶魔学园学习成为恶魔的故事,大概会涉及入间同学入魔了,家庭教师,猎人。主人翁驾驶飞船意外坠落到明末,利用自身超前意识和飞船的高科技技术,组建军队,吊打美欧殖民者,把殖民者赶回自己的老家,占领美洲和澳洲,从此美洲和澳洲是中华领土不可分割的一部分。
问答营销的推广流程 中国网络安全机构 网络营销需要培训吗 大连建网站公司 武汉个人做网站 信息安全测评服务 营销技巧 搜索引擎营销工具 营销渠道与营销网络 网站原则 无形干扰的解决方法咨询【www.richdady.cn】 大龄剩女的婚恋经验有哪些?【www.richdady.cn】 与老公前世的咨询技巧咨询【www.richdady.cn】 家庭关系的前世记忆【www.richdady.cn】 发育倒退的咨询技巧【www.richdady.cn】 婴灵的超度方法【σσЗ8З55О88О√转ihbwel 前世缘份的咨询技巧【σσЗ8З55О88О√转ihbwel 官司的前世因果咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 与女友前世的前世缘分威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 事业不顺的案例分享咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 特殊学校的咨询技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 心慌胸闷头晕的环境影响【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 大龄剩女的职场发展咨询【微:qq383550880 】√转ihbwel 家宅磁场的调整方法咨询【企鹅383550880】√转ihbwel 去世的父亲的前世记忆【www.richdady.cn】√转ihbwel 与公婆前世的前世解析【σσЗ8З55О88О√转ihbwel 内心恐惧胆怯的解决方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 婴灵的前世记忆咨询【σσЗ8З55О88О√转ihbwel 查财运专业服务威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 感情纠纷【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 网络安全大神道哥面试 郑州网络营销培训学校 贵州网站制作哪家好 婚纱摄影网站制作 信息安全讲座多少钱,-1 哈尔滨网站开发 网络安全的主管部门 信息安全研究机构排名 上海网站设计见建设 flash网站制作教程 网络安全新闻视频 信息安全运维资质 信息安全测评服务 对于网络安全的建议 式网站 信息安全测评中心 凌晨 企业信息安全 厂商,-1 北京高端网站建设 太原建网站 本地佛山顺德网站建设 网站建设i b2c网站有哪些 信息安全测评服务 信息网络安全答案 第八届中国信息安全博士论坛 杭州网络安全公司 地址 顺德网站制作案例价位 重庆整合网络营销青岛市网络安全办公室 中山网站制 个人主页网站模板 网站免费注册 成都微网站 上海 网络安全公司 上海 网络安全公司 华为 信息安全 哈密网站制作公司-哈密网站建设|哈密网络公司|哈密做网站 注册信息安全员 事件营销优点 郑州机械网站制作临沂做网站 上海网站设计见建设 2 电子邮件营销案例 网络安全新闻视频 网络信息安全好学吗 大数据与信息安全ppt 江苏省网络与信息安全协调小组 简洁风网站 南昌 网络营销 b2c网站有哪些 互联网大会 网络安全 网络安全法大赛 整合营销案例 搜索引擎营销工具 网络黑客与网络安全 网络安全文章 seo营销优势 有关网络安全纪录片 中山网站制 seo营销优势 中国风格网站模板 网站宽度 网站免费注册 外贸网站建设 中国可信计算与信息安全会议 事件营销优点 沈阳市做网站的公司 网络专业的网站建设价格 wap网站建设 国家网络安全主题 网络安全新闻视频 太原建网站 上海 网络安全公司 四川大学 网络安全编程 期末试题 网站制作青岛 网站建设现状分析 广州做网站信科网络 企业网站制作 如何来做全网营销 信息安全等保测评 网站原则 信息安全合规性检查 如何做好群营销方案 企业信息安全 厂商,-1 信息安全研究机构排名 网站开发服务公司 腾讯信息安全大会 软件营销网 网络安全官方网站 注册信息安全员 舆情营销网 网络安全官方网站 信息安全合规性检查 网络安全的主管部门 网络安全宣传情况 受欢迎的汕头网站推广 互联网营销要学什么软件下载 高唐网站建设服务商芜湖网站建设 杭州网络安全公司 地址 温州企业网站建设 信息安全服务情况 华为 信息安全 信息安全工程师 培训 网络安全法颁布的意义 网络营销战略的步骤 银川网络营销 简洁风网站 信息安全风险评估与等级保护 贵州网站制作哪家好 网络安全大神道哥面试 成都微网站 高大上强企业网站 全球网络安全市场报告 信息安全管理主管,-1 婚纱摄影网站制作 如何来做全网营销 软件营销网 展示型网站建设流程 网站的优势 大连建网站公司 合作网站登录制作 式网站 门户网站建设流程 国有企业信息安全管理办法 信息安全管理主管,-1 2 电子邮件营销案例 郑州网络营销培训学校 苏州市信息安全等级保护网 网站开发服务公司 内蒙古网站建设流程 信息安全测评服务 信息网络安全接入技术规范 网络安全性是什么协议 个人网站模板 有关网络安全纪录片 rsa信息安全公司 珠海专业网站建设价格