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

<a class="close" href="https://wgsznw.c8.org.cn/">&times;</a>
公共网络安全厂家上海全国网站建设外国黄色网站十堰网站建设镇江企业网站建设成都高端建设网站苏州网络营销哪家好锦州网站建设淘宝营销理念保险网站建设网络信息安全攻防 我是一名死刑犯,正苦逼的跪在地上等待着脑袋挨枪子,直到此时才明了一件事;不是社会抛弃了我,而是社会特么的根本就容不下我!这时候,枪声响起了,倒下的却不是我…… 非典型的轻玄幻武侠载体。素不相识的两人,共同走入面对血狱幽冥傀儡的故事中,历经九洲大地,看遍风起云涌,知天下疾苦,晓人间冷暖,从出西秦始,至返蜀中止,在神州大地划了个大圈,圈尽世间百态。真红之血的互相共融,相识,相助,相知,相爱,志向共同的江湖儿女,同行,同心,同德,同力,共同营造出了一个激荡写意的家国江湖。吴昊双眼异化,不仅能鉴宝,还能透视,更能看破风水……文明的时限已到,如何安排后事呢?最初的神这样说着,随后便布下了一场棋局,众神被卷入其中。【玄幻】【修真】【无敌爽文】 世人道我是魔又何妨!鸿蒙之始,龙族独尊! 我是龙!身在黑暗,心向光明!谁愿意甘心成为一枚棋子... 终有一天,我会打破棋局,执剑重回巅峰,弥补前世的落落龙生! 没错!我坚信! 这个大陆叫尼尔大陆,整个大陆呈圆状分布,生活在这个大陆上的只有两类人,人类男性和精灵女性,人族男性生活在西大陆,精灵族女性生活在东大陆。 早在多年前,尼尔大陆经历过一场旷世之战,那一场战斗后,所有的种族都几近灭绝。 残留下来的其他种族,除了人族男性和精灵族女性,不知受到何种诅咒或是魔法的影响,都会快速衰老,几乎是2-3年内,身体器官就会枯竭。 可是,几百年过去了,这个诅咒还依旧扩散在这片大陆。 诅咒尚未解除,但是精灵族和人族的隔阂却在加大。 为了繁衍生息,精灵族和人族不得不允许精灵族的女性和人族的男性婚配。 但是精灵族是尤为高傲的种族,他们对人族充满了敌对和蔑视,认为人族是低阶种族,不屑于与人族通婚。 然而许多年过去,一名绝美的高阶女精灵法师带着她的军队在战场上横扫四方,几乎占领了人类种族四分之三的领土。 人族不得不退回最后的主城塞斯城!群龙无首的人族男性究竟要如何抵御精灵族女性呢。 我们的故事就从这里开始天道万年一纪,有阴阳无极之分。阴阳替换无极成为新天道。百年后出现皇极道人,为三清师父。后来企图代替天道失败,又教导一人,为无极天尊。无极天尊创立正一宗。三清遵循天道轮回,正一遵循天道无情。两派不和。 林仙一为千年人皇。 我有一尺可设规,衡量大道! 我有一剑可斩邪,守护大义! 我有一印可令天,三千神佛定乾坤!《摩羯疑云惊魂时速》以民营高端科技单位港湾海天中心为故事发源地,以天空出现蓝月亮为背景,以正正,李晟旻教授,似火朝阳,花舞语等一大批高端科技人物为看点,他们以破而不斗为准绳化解了周边危机,太空危机,世界危机,最后还为美国的泽那西州解除了生存危机 爱情故事真实感人,穿越古今有声有色,遨游星际耳目一新金榜现世! 首次开启名剑榜,上榜之人就能获得丰厚奖励! 面对名剑榜,大秦祖龙无比自信! “寡人手中天问剑,必是名剑榜第一!” 金榜公布,名剑榜第一,神剑-夜! 望着排名,始皇祖龙直接麻木了! 而咸阳深宫内一位慵懒少年的脑海中不断有机械声音响起! “叮,三国青釭剑上榜,获得暴击奖励!” …… “叮,大秦神剑-夜上榜,获得超级暴击奖励!” 赢乐笑道:“祖龙爸爸不好意思,奖励都归我了!” 始皇祖龙:“儿啊,你是要卷死爸爸啊!” “大秦就交给你了!” 主角只是个废柴!!!没有天才也没有扮猪吃老虎,贴合正常的生活水平,平淡部分较多,高潮部分较少。作者本人不建议推荐看,爽文比这个强亿万倍
承德网站制作公司 信息安全的研究领域,-1 搜索引擎营销的功能 网络安全 效率 网站建设中模板 高端汽车网站建设 苏州网络营销哪家好 十堰网站建设 dns根服务器与网络安全 为提高网络安全 外灵干扰的心理调适【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 如何超度婴灵?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 突然过世的原因有哪些咨询【企鹅383550880】√转ihbwel 发育倒退的原因分析咨询【微:qq383550880 】√转ihbwel 与老公前世【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 强迫症的咨询技巧咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 性压抑的自我提升咨询【σσЗ8З55О88О√转ihbwel 儿子抑郁症的康复训练【微:qq383550880 】√转ihbwel 前世老公的前世解析【σσЗ8З55О88О√转ihbwel 去世的父亲在哪【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 意外的前世修行咨询【www.richdady.cn】√转ihbwel 升迁障碍的职场突破方法有哪些?咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 手机网站开发语言 全国信息安全测评中心 外国黄色网站 网络营销方面做的比较好的企业(产品)的一个经典案例ppt 公共网络安全厂家 微营销的目的 omg网络安全团队是什么 网络安全管理局 级别 网站美工人员主要做什么的 常州网站设计制作 信息安全服务三级资质 主流网络安全产品 公司网站的制作公司 中国国家网络安全 建网站 xyz 信息安全资质包括哪些 网络安全 效率 omg网络安全团队是什么 信息安全资质包括哪些 网络信息安全主题网络安全国际认证 评论营销 提升网络安全管理水平 远程营销策划 企业网站案列 长沙英文网站建设公司 网络安全 断网 周汉华 网络安全 学校网站制作 seo 网站 制作 网站设计验收 网络安全知识有哪些 服务类网站免费建站 信息安全的研究领域,-1 信息安全课程网站 手机网站开发语言 营销销售 网站设计公司-信科网络 网络安全实验室综合关 什么是营销方法 casb 网络安全 制作外贸网站的公司 网络营销策略术语 杭州seo网站优化 营销发展史 周汉华 网络安全 第五届网络安全会议 信息安全管理研究中心 网络安全方面的职业 网络安全 效率 南阳网站优化 十堰网站建设 美国 网络安全战略特征 杭州做网站 网站字体大小合适 网站策划方案 北京响应式的网站 东软网络安全 待遇 微网站的功能 做网站创意 什么是营销方法 网络安全法 漏洞 信息安全顶级会议 网络安全管理规范体系 信息安全 国家安全局 网络信息安全攻防 德州网站推广 网络安全实验室综合关 网络安全 效率 饥饿营销最成功的 北京b2c网站制作 网络营销行为有哪些特点是什么 锦州网站建设 国家信息安全工程技术研究中心官网 手机网站开发语言 美国银行 网络安全攻击 防范 网站建设技术 网络安全会议通知 杭州做网站 镇江企业网站建设 2017信息安全对抗赛 在网络安全体系构成要素中响应是指 外国黄色网站 日本政府网络安全中心 湖南网站建设 怎么搭建自己的网站 网络安全工程学院 网络安全举办了几届 服务类网站免费建站 网站建设的后台登录 公共网络安全厂家 建立网站例题h5营销策略 营销型网站哪家好? 2017信息安全对抗赛 网络营销的主要职能 虚拟化 网络安全 评论营销 苹果网络营销策划 网络安全法 漏洞 信息安全资质包括哪些 数据库网络安全措施 合川网站建设 苹果网络营销策划 网站美工人员主要做什么的 超炫的网站 学校网站制作 网站美工人员主要做什么的 全国信息安全测评中心 苏州网络营销哪家好 中国营销软件网网站 手机网站app 免费网站是 呼市推广网站 信息安全检查工具 信息安全服务三级资质 网络安全知识有哪些 营销模式饥饿营销简述网络营销中的stp casb 网络安全 网站的优点 网站制作公司 深圳 中国中央网络安全和信息化领导小组办公室 网站建设技术 公司网站的制作公司 搜索引擎营销的功能 网站字体大小合适 网络营销渠道成本 seo 网站 制作 国家信息安全工程技术研究中心官网 公司网站的制作公司 杭州seo网站优化 网站信息安全扫描 互联网营销课程 杭州 中国国家网络安全 南阳网站优化 杭州seo网站优化 网络安全宣传广告