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

<a class="close" href="https://cia.885588.cn/">&times;</a>
网络安全检查办法上海建站网站的企业信息安全产品配置与应用网站设计教程xctf网络安全营销失败案例网站对域名企业要网络营销网站重建营销型网站建设公司刚刚高考完,十分喜欢文学,决定尝试一下我叫陆云生是个消防员,再一次任务中营救一个轻生的溺水女人,而导致不小心死亡,我却意外穿越到天阳大陆重生到同名的一个人身上,此生我不再为别人而活 而为自己而活!“以天地为盘,众生为子!”最终问鼎剑道之颠!寒原,冰封千里,生存灭亡,命悬一线。 在这里,没有诗与歌,当然也没有所谓理想。 然而,就这样,隗姜与姬鸿,两大部落,涿泉与明渊,命运般的邂逅,创造这样一场,岚山内,寻找所谓梦之物。我们每个人身体里,都有一种可怕,狂野和罔顾法纪的欲望,连那些看似温和的人也不例外。吴聊穿越宗门林立的武道世界 本为圣宗附属,前途无量 却得罪权贵,师门被灭 侥幸逃得一命的吴聊加入六扇门 从此镇压天下 “圣宗犯法,与庶民同罪。” “凡违背人道,犯我大乾律法者,虽远必诛!”2025年,全球抗疫斗争取得了阶段性胜利,疫苗普及率达到70%,虽然新冠肺炎疫情仍在影响着世界,人类似乎有望重返那个和谐安详时代。然而,一个更严重的潜在危机正在酝酿,一种新型病毒正在悄无声息地传播,各国企图采取措施,然而人类发现,这场新的疫情的背后隐藏着许多超越当前认知的事情,光靠一己之力根本难以阻挡,人类事实上十分脆弱,越来越多的开始失去生命,人类走到了灭绝的边缘。就在许多人陷入迷茫之际,一个全球性的组织开始浮出水面,开始由幕后走向台前,轻霜冻死单根草,狂风难毁万木林,唯有团结,人类才能赢得生存的机会。2755年,人类开始走向星际文明时代,终端永恒号将是第一艘飞向星际文明的战舰。没错,我们的主角在这艘战舰中。维克特萨摩斯,外号狼或狼夜叉,身高195厘米、体重325斤。背后那刻画出来般的肌肉,直接印出魔神脸般的魔神背。总长3550米的终端永恒号战舰装备了全球最先进的扭空引擎与许多灭星武器…直逼多重宇宙级别,完全可以探索宇宙。此时维克特萨摩斯与他的妹妹维克特爱多琳满脸期待地坐在终端永恒号的指挥室中,他俩谨慎地看着以上船的500名新兵的资料。不知道在浩瀚的宇宙中,等待这502位战士的将会是什么?在未来期限的50年内,这次探索宇宙文明的途中他们是否能完成全体人类交给他们的使命?他们将决定未来的人类文明是否是其他宇宙文明的敌人,太阳系被开发得差不多啦,他们也决定人类的新家园。就像书名上写着的,你加载了危险游戏。 总之我得,在游戏正式开始前,给你个忠告。 呃,没错,说得就是屏幕前满脸不在乎的你... 在这里! 你不该相信任何人! OK!就这样... 总之不论你是谁,在哪里,请相信我,在看到这里的时候,你已经被卷入进了这场危险的游戏当中! 你可以试着回头,可以盯住屏幕,可以闭上眼睛... 但不论你怎么做,它们就藏在你身边,或许是卧室的床下面,或许是卫生间的镜子里(谁知道呢,它们的喜好向来与众不同)。 呃... 该死—— 它们发现我了! 看来我只能送你到这里,下面的路,你得靠自己走了! 还记得我最初说过的吗? 不要相信任何人! 包括... 从床底下朝你伸出手的我!乔西岚是乔家的少爷,有一天他惊奇的发现自己的朋友乔振宇是外星来客,他以为自己的朋友要侵占地球,又发现外星来客不止乔振宇一人,而他们又好像不是一伙的,看西岚如何拯救家族,拯救地球。某一天,一个神秘人的到来打破了徐世乔的平静生活。命运的齿轮开始旋转,在知道了自己父母双亲的死亡后,毅然前往中东,去消灭那已经变成食尸鬼的曾祖父。他的奇妙的冒险,开始了。
昌平手机网站建设 seo的网站建设 蓬莱建网站 上海专业网站设计 企业网络安全公司 南阳网站营销外包公司 台州网站设计 解放路 高端的平面设计网站 营销 营销新思路 心慌胸闷头晕的咨询技巧【www.richdady.cn】 外灵干扰的解决方法咨询【www.richdady.cn】 灵魂化解的步骤【www.richdady.cn】 意外的前世修行咨询【www.richdady.cn】 儿子不读书的咨询技巧咨询【www.richdady.cn】 什么原因意外的前世缘分咨询【σσЗ8З55О88О√转ihbwel 意外的前世解析咨询【企鹅383550880】√转ihbwel 儿子不读书的解决方法【www.richdady.cn】√转ihbwel 为什么过世的前世因果咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 事业不顺的职场建议有哪些?咨询【www.richdady.cn】√转ihbwel 孩子厌学的辅导方法【www.richdady.cn】√转ihbwel 学习成绩差的家庭教育咨询【微:qq383550880 】√转ihbwel 什么原因意外的心理调适【微:qq383550880 】√转ihbwel 克服职场升迁障碍威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 性压抑的解决方法咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 失业的案例分享咨询【企鹅383550880】√转ihbwel 升职加薪的障碍分析威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 亲子关系的教育策略有哪些?【www.richdady.cn】√转ihbwel 不爱读书的自我提升咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 为什么过世的前世因果【企鹅383550880】√转ihbwel 惠州做网站 信息安全管理岗 招聘 信息安全市场总监 sem整合营销专家 巢湖网站建设 公安机关网络安全备案 东城网站设计 国家信息安全政策体系包括哪些内容 3g网站设计 日本网络安全专业硕士 植入式营销有哪些形式 自助建网站 制作网站的要素 企业网络安全监控 深圳全网营销外包 昆明做企业网站多少钱 网站模板制作 网络安全状况分析 网络安全平台 seo的网站建设 网站承建 营销新思路 服务器信息安全存在的不足 国家信息安全举报投诉,-1 网络安全监测手段 建网站手机版 营销型网站建设公司 保定网站建设 国家信息安全政策体系包括哪些内容 429网络安全日2017 信息安全就业培训 信息安全标准与法律... 网络营销营销策略 深圳网站制作公司资讯 网络安全技术防火墙 网站分辨率 企业网络安全规定 惠州外贸网站建设 植入式营销主要形式 惠州做网站 上海全国网站建设 信息安全事件管理规范 网络营销时域性 深圳全网营销外包 网络营销整体方案设计 巢湖网站建设 seo的网站建设 哪个国家学营销 信息安全审核 招聘 济南网络营销推广公司哪家好专业建设网站制作 2016年网络安全大事件 深信服信息安全审计系统,-1 济南网站建设第六网建 营销型网站成功案例 营销型网站建设公司 信息安全 国标 信息安全专业全国哪些 网站分辨率 昌平手机网站建设 网络个人信息安全案例 厦门网站制作 网络安全监测手段 国家信息安全政策体系包括哪些内容 邢台网站推广 社交媒体营销要不要做 济南网站建设第六网建 计算机技术与信息安全 网络营销的个性化 济南网站建设第六网建 关系营销缺点 营销型网站建设公司 信息安全 国标 信息安全专业全国哪些 枣庄网站优化 昌平手机网站建设 网络个人信息安全案例 厦门网站制作 429网络安全日2017 国家信息安全政策体系包括哪些内容 邢台网站推广 企业要网络营销 杭州网站建设公司联系方式 惠州做网站 植入式营销有哪些形式 信息安全 程序员 建网站手机版 深圳网站制作公司资讯 网络营销模式定位 营销型网站成功案例 深圳高端网站制作费用 余姚做网站 厦门网站建设的公司哪家好 2017网络安全周武汉 信息安全培训 政府网站建设 网络安全技术项目考试填空题含:暴力破解最基本的两种方法为 企业网络安全规定 网络个人信息安全案例 信息安全标准与法律... 整合营销传播的效果 上海全国网站建设 江苏网站建设机构 信息安全审核 招聘 广州数字营销 营销新思路 网络营销的个性化 静安区品牌网站建设 中国信息安全标准体系建设规划 网络安全能力 国家信息安全举报投诉,-1 信息安全专业全国哪些 网络安全管理工作方案。 北京哪些大学的信息安全专业好 蓬莱建网站 上海全国网站建设 网站重建 429网络安全日2017 网络安全能力 哪个国家学营销 营销型网站成功案例 高端的平面设计网站 昌平手机网站建设 网络安全电子版 植入式营销主要形式 网络安全测试用例 枣庄网站优化 网络营销整体方案设计 佛山网站设计特色 网络安全管理工作方案。 429网络安全日2017 惠州外贸网站建设 静安区品牌网站建设 网络安全的信息 大连做网站公司 邢台网站推广