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

<a class="close" href="https://llnz7ud.se5g.cn/">&times;</a>
组合营销传统企业网络营销意义信息安全工具排名网络营销团队配置上海网站设计公司网络目标市场营销策略建网站信息安全 工具网络安全共享中心哈工大网络与信息安全国家信息安全部门电话信息技术与信息安全知识读本星运大陆,一个修习星能量求道成仙的世界。天地混沌,世界突现神秘空间,共有九重。来自第九空间的神秘力量,困住众神,颠覆世界。魔兽横行。 一个流浪子,从此走上了,修习星能量,拯救众神,使世界重新恢复和平的道路。林原刚刚穿越就碰到一只想要吃掉自己的恶鬼该怎么办?当然是掏出武器打爆对方了!可要是打不过又怎么办?那就只有动用自己的天赋(外挂) 了。“修改器!给我点,!日之呼吸精通!通透世界完成!斑纹开启!赫刀就绪!给你们一分钟的时间逃跑,不然的话,等待你们的就只有死亡。[老八秘小制]不是意外,房东东因为幸运而被甄选,却只成为魔法星界的普通居民。设定小目标就是环游魔法世界,见识什么叫快乐星球。然而风云变幻,魔团会、族老会、真理会与皇经会几方势力暗流汹涌,无意身处其中自己也狼狈不堪。既然如此,那便是登上魔法的最高殿堂重权话事,宵小退散。【恭喜!】 【作家4462377565号成功完本】 【得到认可“神作”】 【获得作家经验10万点】 【正在抽取作品中的技能】 …… 【警告!】 【作家996331415号作品涉及违规内容】 【正在执行抹杀】 …… 【恭喜!】 【作家000005743号累计收到价值打赏币100万的礼物】 【获得作家经验1万点】 【由于此作品无特殊技能】 【正在获取其余同时期作家低一级的作品信息】 【正在抽取技能】 …… 【警告!】 【重生者004370227号抄袭后世作家作品】 【正在执行抹杀】 …… 【恭喜!】 【作家0000094941号每日更新15000字】 【获得称号“全勤(大师)”】 【获得“万界宝箱(黄金)”一个】 …… 这是一个读者为神的世界,作家是这个世界上令人敬仰的修炼者,而其余只能作为游客阅读小说的人,要么是懦弱的蝼蚁,要么是正处于保护期的未成年人。 刚穿越到这个世界的李子梦本以为可以大展才华,却发现穿越者不可抄袭原世界作品。籃陌的力作《向世界说你好》.生活本该就是美好的存在.为了生活我们奔波在大街小巷.加班熬夜拿薪水.每个人都觉得上天不公.为什么别人能光彩照人.而我们却默默无闻.原因只有一个.那就是我们的努力远远不够.看似风光无比的的成功人士.你永远不知道他洒下多少汗水来证明自己的选择没有错.心中的苦.永不言弃的精神才是我们应该学习的.每个人都有自己的梦想.也许我们为了生活曾放弃过自己的梦想.我们也曾迷失方向.感到彷徨.忘记了最初的梦想,生活教会了我们这么多.让我们每天一起学习.一起成长.我们应该知道感恩.他就像我们的亲人一样.陪伴我们走完此生!这是一个游戏技术迭代迅猛的时代。 从红白机到电脑,再到VR技术的问世,不过一代人的时光荏苒。 畸形的发展状态下,这个世界的游戏游戏产业忠于技术,而忽略内容起来。 大量VR游戏占领市场,却大都以模拟仿真为主! “《都市模拟器》《航海模拟器》《跑酷模拟器》,这都什么东西!” 资深游戏设计师云枫穿越而来,成了濒临破产的游戏工作室经营者。 “而且清一色的买断制游戏,免费游戏它不香吗?!” 觉醒了系统的云枫毅然开启了游戏具现。 《彩虹岛》《地下城勇士》《英雄联盟》《魔兽世界》...... “游戏,可不是只有vr一种!” “买断制游戏,也不该成为穷富人的分界线!” 携无尽经典游戏而来,云枫和一手创办的风云工作室将要搅动游戏界的风云! “您是来做慈善的吧?” 满怀敬畏的眼光中,新的浪潮席卷全球。 急急急,修为高深的仙子要杀我,怎么破局?! “系统已切换成攻略版本,助宿主攻略成功。” 急急急,收不到天姿绝顶的弟子怎么破?! “系统已切换成最强师徒养成版本,为您保驾护航,助宿主登顶最强。” 当悲惨的命运降临在一个人头上的时候,无可奈何的选择离开这个世界的时候,却又莫名其妙的发生了难以想象的事情,一系列不愿意却又无可奈何的时候,却又无能为力的时候,他就像坐上了过山车一样,发生了惊险又刺激游戏一般的亲身体验,想停都停不下来。他自己已经难以承受穿越给他带来的折磨与痛苦。却又无能人能够帮助他的时候,他却意想不到的桃花运不断,一次次的穿越磨炼着他的身心,在那么难以承受的环镜条件下,却得到了终心不变的爱情,历尽磨难真情在,痴心不改遇良人,好不容得到了来之不易甜蜜爱情时,却又被穿越无情的分开。当他想尽一切办法想回到心爱的妻子身边却又回不去了,无奈放弃的时候。却又阴差阳错的又回到朝思暮想的妻子身边。这都是穿越的罪过,一次一次给了希望却,又无情的给了他失望。他的人生实在酷。从古至今天下第一奇人……剧情接着《勇者》、《超能战士》。2014年9月,ME如愿地考上了重点高中。更想不到的是,在新学校中他跟过去的所有伙伴都重逢了。轩影、电紫更是成为TFL36的导师,每天指挥着ME他们训练……30多人齐冒险,将会发生什么趣事?天才与天才之间的较量! 从小就有着惊人力量的人类,一开始便已经是普通人类的顶尖。头脑,背景,皆是最顶尖之流。 死去最爱的人,化为世界上最大的恶魔? 天才与天才之间的脑力对抗。 即将复活的最终怪物?
企业网站更新什么内容 深圳企业网站建设哪家好 网络营销的职位有什么区别 很有风格的网站有哪些 小红书营销活动 4p服务营销理论 网站设计公司长沙 网络安全公司排名2017 网络安全事件数据 网站制作的收费 前世缘份的缘分揭秘【www.richdady.cn】 冤亲债主【www.richdady.cn】 不爱读书的改运方法咨询【www.richdady.cn】 前世缘份的续写有哪些方法?咨询【www.richdady.cn】 前世缘份的前世修行【www.richdady.cn】 大龄剩女的婚恋心态如何调整?【www.richdady.cn】√转ihbwel 儿子抑郁症的环境影响【www.richdady.cn】√转ihbwel 存不住钱的环境影响咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 脑部不清晰【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 缺心眼的解决方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 财运不佳的风水调整【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 缺心眼的解决方法咨询【www.richdady.cn】√转ihbwel 儿童发育倒退的原因【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 感情纠纷的解决技巧咨询【微:qq383550880 】√转ihbwel 儿子抑郁症的自我提升【微:qq383550880 】√转ihbwel 儿子抑郁症的咨询技巧【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世老公的前世解析【企鹅383550880】√转ihbwel 邪灵对人的危害【企鹅383550880】√转ihbwel 如何改善人际关系【企鹅383550880】√转ihbwel 冤亲债主干扰的解决方法【σσЗ8З55О88О√转ihbwel 京东怎么营销的 有网站后台 网络安全专家英文博客营销的特点有哪些 常州制作网站价格 上海公司做网站 杭州 网站建站 宜兴网站建设 网络安全网 静安微信手机网站制作 张掖网站建设 2017全国信息安全大赛 网络信息安全与防范 cc标准 信息安全 网站建设干货 网络营销推广案例分析 重庆的网站建设公司 2017网络安全会议搜索 有网站后台 常州微网站建设 常用网络营销app 多语言网站 网站设计公司长沙 太原网站改版 江苏省网络安全对抗 网络安全目录 珠海网站设计 负责网络安全 学生 网络信息安全 杭州专业做网站的公司 网站建设大致价格2017 青岛服饰营销 全国大学生网络安全实战竞赛 网络营销的外部环境 家电营销策划 网络安全 菜刀 深圳制作企业网站 京东怎么营销的 pkav网络安全 网站评测的作用 网站设计公司长沙 有网站后台 智慧城市 网络安全建设 布吉网站建设 h5经典营销案例 网络安全专家英文博客营销的特点有哪些 南山建网站 门窗品牌网络营销的策略经验与案例 选自网络整合营销全案服务商 桌面信息安全管理软件 搜索引擎营销是 网站搭建价格 2015中国网络安全技能大赛 2015网络安全趋势 网络安全网 网站建设用哪种语言最好 7大网络营销的成功案例 打赏营销 张掖网站建设 网络营销自学课程 江苏省网络安全对抗 网络安全共享中心 仿建网站 7大网络营销的成功案例 网站建设价格标准信息 网站咋建立 常州制作网站价格 网络安全培训经验 高校网络安全案例 手机网站开发框架 中央网信办网络安全 大型企业网络安全 静安微信手机网站制作 网络营销的外部环境 菏泽做网站 上海网站设计公司 信息安全等级 保护备案查询网络安全攻击和防御 东莞政府信息安全 布吉网站建设 网络营销推广案例分析 哈尔滨做网站电话 张掖网站建设 数据信息安全体系,-1 中国信息安全测评中心华中测评中心怎么样 网络营销策划活动 昆明做网站公司 网站建设用哪种语言最好 网络安全从入门到精通 吉安网站 科站网站 朔州市网站建设 邢台网站建设服务商 工业控制系统信息安全 标准 网络安全信息共享:一步步走向美国的安全繁荣和自由的网络空间 网站制作帐户设置 吉安网站 设计官方网站 杭州专业做网站的公司 打赏营销 聚美优品营销ppt 个人网站欣赏 酒店网络营销的渠道 网络安全事件数据 cc标准 信息安全 建网站怎么上线 响应 信息安全 智慧城市 网络安全建设 昆明营销专家 4p服务营销理论 网络安全公司排名2017 2017全球网络安全事件 太原网站改版 网站建设售前说明书 朔州市网站建设 网络营销的职位有什么区别 网络信息安全与防范 网络安全公司 宜兴网站建设 网络安全从入门到精通 企业网站更新什么内容 网络营销的外部环境 信息安全 工具 信息安全工具排名网络营销团队配置 网站设计公司长沙 哪些因素营销网站权重 信息安全通告 企业网站设计需要多久 国际网络安全法 北京网络安全大会 网络安全防护系统 网络安全 菜刀 网络安全 菜刀 郑州营销小公司 银川建网站 网络信息安全的防范的主要手段是 多语言网站 苏州企业网站建设