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

<a class="close" href="https://rils.genha.cn/">&times;</a>
北京网站建设公司分享网站改版注意事项信息安全等级 四级支付宝的网络营销案例分析武汉网站制作南京信息安全测评中心地址,-1产品网络安全方针网站字体大小合适沈阳网站优化排名北京网站建设公司分享网站改版注意事项企业网站设计需要多久简介:真龙神殿 此时的神殿内,有着一名少年正在和龙神说着话! 王令“爷爷,我是要去仙界转世修炼吗?” 坐在神座上的龙神听王令说要去仙界愣了一下!手悄悄背到了背后 捏碎了在右手上的,洪荒世界。心里暗暗想到“没想到,小令竟然喜欢仙界” 王令看着龙神爷爷的样子,叹了一口气,心里想到 “爷爷,竟然不喜欢仙界!”随后被在身后的右手 也悄悄的捏碎了仙界。 捏碎仙界的王令,说道“爷爷那我就去华夏祖地转世吧。” 龙神露出了一丝笑容,说道“好吧小令,当年的那场战争,为了祖地的安全,你太爷爷就把祖地封印了,也是时候解开了! 咱们也应该回去了,毕竟咱们的子孙等的太久了。 随着王令带着系统的转世,随之而来的末日病毒 在二十年后的某一天降临地球。 穿越大明,成了木匠皇帝的弟弟,大明信王朱由检。 上一世太累,这一世就想混吃等死,逍遥自在。 可是大明朝日薄西山,要想享乐就要先拯救大明朝,要想拯救大明朝就不能好好享乐,朱由检表示麻了。 于是木匠皇帝成了科学狂人,魏忠贤成了忠实的狗腿子,吴三桂成了专业打手……有说人生命运已经注定,任凭怎样都无法跳脱这种牢笼。是的,似乎深有体会,仿佛周围的一切早就构成了一张网,只等人生,便牢牢笼住……也像极了老天在圈养研究他的生物,就眼睁睁看着,想要知道你的各种反应…… 如果命运不能改变,如果想要改变命运,无论如何,都要精神起来,和命运、和自己、和老天斗一斗这一生! 洪武十二年,大明初创。 蒙元余孽依旧在虎视眈眈,逐渐走出黑暗中世纪的西方也开始文艺复兴。 就在这个古老民族即将被世界抛弃的关键节点。 一个穿越的灵魂降临大明,附身到了一个十五岁的少年身上。 “有一人。 他文可订币制,育良种,办大学,开科学为天下先! 武可发明蒸汽机,造枪炮,扬帆七海,让凶残的草原蛮子为朕歌舞助兴!” “他,就是我朱元璋的孙子,朱肇辉!”一张面具让林肖告别了摆烂的生活,打开了新的世界。这里灵气复苏,生物进化已经持续了近百年,古老传承纷纷现世,百废待兴且看少年如何迎风而行,攀临顶峰虚空降临,魔物肆虐。 为了抵抗这一切,每个人都会在十八岁时,觉醒自己的天命武器。 刀枪剑戟,斧钺钩叉,各种各样的天命武器层出不穷。 甚至还有人觉醒出了书籍,乐器,宝石等一类特殊武器。 草率穿越来到这个世界的石灿,不仅获得了一个【怂6】系统,还在系统的改变下觉醒了厚实表皮。 正当所有人都对魔物避之不及时,石灿却自信歪嘴一笑叫嚣所有魔物。 “在下一脸,可抗逼兜,拳头,臭脚,谩骂,嘲讽,刀剑,不服来战!” 逃到地球的陆源被人追杀,他不想就这么陨落,他要稳健,要苟住发育。 但是……他那便宜老婆家事有点多。 有人死的时候,把他们一家都托付给了陆源,他不喜欢麻烦,决定横推过去。面对死灵族,封印着怪兽八梼的佣兵,最后能否成为拯救世界的力量?神秘的空间系元素亲和力,诡异的星辰剑,亚夏人的先祖吴道轩视乎留下了什么秘密……记录我在国企无聊的摸鱼生活万法皆寂,诸神天堂; 神州漠林,戮仙屠神! 以我最强神兵,换你一世安稳;众神同寂,许你永世天堂!
专业网站设计哪家好 备份信息安全 网络安全论文引子 网络安全协议与标准 h5营销的优势 工控信息安全技术 网络营销打造品牌 聊城网站设计 成都高端建设网站 大莲网站建设公司 解梦的咨询技巧咨询【www.richdady.cn】 忧郁症的咨询技巧咨询【www.richdady.cn】 升迁障碍的自我提升【www.richdady.cn】 老公家暴的环境影响咨询【www.richdady.cn】 为什么过世【www.richdady.cn】 如何发现前世缘份【σσЗ8З55О88О√转ihbwel 冤亲债主化解咨询【微:qq383550880 】√转ihbwel 人际关系不好的表现及原因【www.richdady.cn】√转ihbwel 缺心眼的沟通技巧咨询【企鹅383550880】√转ihbwel 失业的环境影响【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婴灵的超度仪式【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 解梦【微:qq383550880 】√转ihbwel 升迁障碍的职场突破方法有哪些?【σσЗ8З55О88О√转ihbwel 解决孩子不爱读书的问题咨询【企鹅383550880】√转ihbwel 去世的父亲的前世修行【企鹅383550880】√转ihbwel 去世的父亲的影响分析【微:qq383550880 】√转ihbwel 冤亲债主干扰有哪些常见症状?【企鹅383550880】√转ihbwel 亲子关系的共同成长方法有哪些?威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 升职加薪的障碍分析威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 感情纠纷的情感沟通【www.richdady.cn】√转ihbwel 深圳做h5网站设计 引擎营销教材 信息安全参考标准 网络安全厂商 计算机网络安全的基本要素 专业网站设计哪家好 cog信息安全论坛网址 信息安全国家 微博热点营销事件 网站设计公司-信科网络 服务类网站免费建站 承德网站制作公司 网站建设的后台登录 网络营销什么软件好使邢台网站定制 常州网站优化 国家网络安全网站 网站一跳率 h5营销的优势 免费建网站家谱系统 系统网站 签约 武汉新艺博彩绘 网站建设项目_武汉网站建设公司首选纵横互联 网络营销应该这样做 上海专业做网站公司地址 亳州网站制作 国内网络安全问题 网络安全的公司有哪些特征 营销图片 成都高端建设网站 滨江网络安全公司 淘宝网商营销策略分析 注册信息安全专业人员证书制作网站 网络安全注册表编程 名词解释网络市场营销 营销外包公司 北京 网站营销推广 关于网络安全的证书 长沙英文网站建设公司 亳州网站制作 北京响应式的网站 网络安全与信息沟通 网站设计公司-信科网络 签约 武汉新艺博彩绘 网站建设项目_武汉网站建设公司首选纵横互联 信息安全等级 四级 企业网站设计经典案例 国家企业信息安全系统 东莞手机网站建设 网络安全是什么工作 装饰公司网站建站 微信网络营销词条网站如何宣传 网站内容 网络安全宣传广告 网络营销体系都有什么意义 中国信息安全相关部门 福州网站制作公司名字 2017年3月网络安全大会 网站怎么制作 淘宝店营销 微博热点营销事件 涿州网站建设 h5营销的优势 行业平台网站建设 微信营销的认识和感想 网络上营销推广代理 南京信息安全测评中心地址,-1 网络营销体系都有什么意义 网络安全注册表编程 信息安全 pdf 网站制作的收费 滨江网络安全公司 国内外信息安全现状 哈尔滨网站设计 信息安全产品资质 东莞手机网站建设 北京网站建设公司分享网站改版注意事项 网络空间是国家信息安全的核心数据,-1 网页类网站 公安厅 网络安全培训 信息安全部主任 企业网站设计需要多久 代理商营销 在线购物网站功能模块 云建网站 网络安全与信息沟通 上海有什么网络安全公司 网站字体大小合适 系统网站 杭州做网站 计算机网络安全的基本要素 网络营销打造品牌 网站营销推广 营销型网站建设定制 漯河做网站 装饰公司网站建站 网络营销什么软件好使邢台网站定制 网站一跳率 重庆做网站重庆网站建设重庆网络推广重庆网络公司 上海有什么网络安全公司 负责信息安全等级保护工作的监督 海淀网站建设 如何使用陌陌进行网络营销 大型企业网络安全解决方案 信息安全国家 门户网站网站制作 网站美工人员主要做什么的 信息安全部主任 大型企业网络安全解决方案 网络安全协议与标准 淘宝店营销 cog信息安全论坛网址 网络安全协议与标准 chinasec安元可信网络安全平台 信息安全参考标准 重庆seo网络营销高手 工控信息安全技术 信息安全产品资质 深圳企业网站公司 深圳做h5网站设计 成都高端建设网站 企业网站设计经典案例 国际网络安全认证 引擎营销教材 北京市网站公司网站 服务营销的缺点 网站建设申请 代理商营销 网络营销应该这样做 信息安全深圳 2017中国网络安全年会搜索引擎营销优点 深圳企业网站公司 免费建网站家谱系统 营销网址 大莲网站建设公司 网站建设的后台登录 陕西省信息安全公司,-1 网络营销小米手机