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

<a class="close" href="https://9ahubw.panvpn.cn/">&times;</a>
天津网站开发找人做网站建网购网站网络安全需求分析需要按照服务器信息安全运营中心产品精致的网站大型免费网站制作大数据网络安全架构2015十大网络安全事件日照网站推广滴滴滴…………吐槽系统已连接初号玩家! 没错,我叫郑飞,不是真废,但同样也是真的废! 什么玩意?吐槽系统!?吐槽就可以得到超级能量! 什么,在吐槽系统中!吐槽还分三六九等的级别!吐师!大吐师!吐宗!吐王!吐帝!吐皇!吐尊!吐圣!吐神! 系统连接!嘴遁开始!成为主角!吐槽升级!异界百世!由我畅游! 什么?你说吐槽不能升级?我说吐槽偏偏就能升级! 逗逼三国,二货西游!傻缺封神,皆等去探索吐槽! 穿越百世!属我最狂!要问为何!吐槽最强? 快看郑飞怎样无敌嘴遁?穿越异世,吐槽成神! 一开始便 莫名其妙的穿越到了西游主角被压在五指山下的时间段??这么倒霉?刚开始就卡关了!要活活煎熬的忍耐500年吗?或者是启用超级战斗系统直接崩开五指山?再次大闹天宫?产生不一样的结果,系统的bug!和达到巅峰系统系数产生一次失败战斗的重启!会产生怎样的精彩的故事? 经历四大名著主角不一样的爱恨故事经历、 且看且品小说人生…………言钦雅有四张面具,首为狐耳,是对黎明百姓仁慈与怜悯,然愚民不可救,围而攻之,遂出黑龙,怒而屠城;冷静之后,蝶衣覆面,游荡江湖,放逐为自由;奈何红颜为君倾,赠君鸣凰,携妻归庙堂。在泰拉大陆这片大地上每时每刻都发生着故事,而这里的日常却不太寻常【快节奏,轻松爽文】作为一个穿越者,镜尘却欠着阎王爷30年寿命。为此,镜尘需要每天向【赎命系统】上交30万的续命费。直到所有的钱都还清,他才能不去找阎王喝茶。镜尘无奈,只能进入娱乐圈,赚钱还命了。 本小说极人物纯属虚构,如有雷同,纯属巧合。切勿模仿。少年成长之途,这路,通往未来的荣光,也连接了旁人的过往……新晋重点高中的高一新生,本来想安安稳稳地度过高中三年,怎奈生活中插曲不断,看来想低调都难了... 老师眼中的好好学生、同学眼中的理科学霸、他班学生眼中的噩梦、家长口中别人家的孩子... 等等,这些都是在说我吗?我就是一素人啊单亲家庭的沈飞在父亲离奇失踪多年后,准备以父亲在他儿时讲述的《光明战士》的故事为素材,创作一部新的动漫,在与主管苏洁商量如何修缮人物形象的时候,突然天降惊雷,沈飞和苏洁被吸入进了二次元的世界,蛋生在了一个叫马来西的王国并被赐名“洛克”,在遍布黑暗的二次元世界里,他结识了很多伙伴,收获了很多在现实生活中还没有体验过的人情冷暖,开启了一段奇妙的二次元之旅,旅途中沈飞(洛克)意外地发现了父亲的蛛丝马迹,这让他感到意外地喜悦,十几年了终于有了父亲的下落,沈飞(洛克)按图索骥开始了寻父之旅…… “若使人间万千生灵涂炭,星夜无光,那么我,便成为那一道光。” 大明皇于洪荒中崛起,塑造武者修炼境界的体系,吸纳万千大荒巨兽融入自身,成就神相境界,以自身血肉铸造明玄结界,保护人类繁衍生息。 九千多年后,一个少年从一处森林中缓缓苏醒过来,拥有废体的同时,竟然被认为是武神法相的拥有者。 在启明大陆中,武神在涅槃境失败后,可以选择转生,转生成功的人,在武灵的法相阶段,会展露出一个人影虚影,俗称“武神法相”。 在这个世界,他将秉承大明皇的意志,化身世界法则,对抗玄明结界外的洪荒兽潮。 “李揽雀,我将跨越你,迈向天下。” “接下来,我将以神相的形态出击。” 陆霆风睁开眼睛发现自己正身处于几乎被丧尸占领的世界,老师,学生,环卫工人,快递小哥等等全部变成了浑身脓包,面容枯槁且吃人的行尸走肉。 人类文明百年铸就的钢铁森林一点点腐朽,大地被鲜血染成了绯红色,滔天山火,汹涌洪流,大雪灾,酸雨······当货币金钱和权力失去了诱人的颜色,那贪婪与自私便成了幸存者的代名词,末日里只有水与食物才是硬货币,所有人都在祷告这场灾难早早结束,可这却不是一场游戏,没有人是最后的赢家。 活下去! 不要被其他人吃掉! 陆霆风唯一的信念就是找到弟弟陆雷云,并想方设法从满是丧尸的东川市逃到几千里外的【人类幸存者要塞】,他会成功吗?“大秦算什么...寡人要率新唐的铁骑,打下一个大大的疆域!”躺在印第安部落内,手中摇晃着看不清颜色的酒杯,李承洲向着身边所有人郑重承诺!要替大秦守护江山不倒!前提..得是自己来做皇帝!自此,超脱数千年的大革命先从美洲大陆开始了!
网站建设 选中企动力 购买b2c网站 天津网站开发 南宁制作营销型网站 微山做网站 成都 信息安全大会 网络安全如何防范 重庆网站建设 旅游网站开发 世界环境日借势营销 存不住钱的财务规划咨询【www.richdady.cn】 迟缓儿的家庭支持【www.richdady.cn】 解梦咨询【www.richdady.cn】 前世缘份如何影响今生?【www.richdady.cn】 升迁障碍的自我提升咨询【www.richdady.cn】 迟缓儿的治疗方法咨询【微:qq383550880 】√转ihbwel 婴灵的超度仪式咨询【σσЗ8З55О88О√转ihbwel 大龄剩女的婚恋心态如何调整?【www.richdady.cn】√转ihbwel 孩子学习不好的环境影响【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 与女友前世的前世缘分【σσЗ8З55О88О√转ihbwel 什么是婴灵?咨询【σσЗ8З55О88О√转ihbwel 升迁障碍的职业发展威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世今生的修行方法咨询【企鹅383550880】√转ihbwel 突然过世的原因有哪些【微:qq383550880 】√转ihbwel 财运不佳的风水调整方法有哪些?【www.richdady.cn】√转ihbwel 前世缘份如何影响人际关系?咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 干扰的预防与化解威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 前世缘份的故事如何改变命运?咨询【微:qq383550880 】√转ihbwel 感情纠纷的解决方法【www.richdady.cn】√转ihbwel 学习成绩差的心理调适咨询【企鹅383550880】√转ihbwel 我想建网站 专线可以做网站 零基础网络安全 高州做网站 成功微信营销案例 行业网络安全培训课程 提供网站建设设计保护信息安全最基础 最核心的技术是 旅游网站开发 facebook个人信息安全 微博传播营销的特点 南宁制作营销型网站 建网购网站 找人做网站 独立网站建设 新余做网站 idcisp信息安全管理系统 找人做网站 行业网络安全培训课程 关于华为网络安全整治 无锡地区网站制作公司排名 建微网站需要购买官网主机吗 专线可以做网站 长春建设平台网站的公司 网站显示百度地图 自制app网站 网站栏目 大数据网络安全架构 邢台做网站推广价格 信息安全 银监会 怎样创建网站 网络营销11 酒店网络营销方案样版 互联网广告营销特点是什么意思 网站建设西安 找人做网站 营销型网站模板 手机移动端网站 idcisp信息安全管理系统 山西网络营销推广 网站开发需求 网站建设西安 信息安全日 营销案例报告饥饿营销 美国国家信息安全战略 山西网络营销推广 建网站怎么弄 信息安全备案申请模版,-1 网站建设 选中企动力 专业网站优化制作公司 网站栏目 微山做网站 网络安全如何防范 信息安全漏洞小红书 营销玩法 营销推广公司西安 东莞营销网站制作 营销培训视频 2015十大网络安全事件 营销型网站模板 企业营销网站建设公司哪家好 国际网络安全组织 网络安全测试软件 如何做公司网站 事件营销缺点 建网购网站 网站建设 选中企动力 网站兼容9 制定网络营销策略须考虑 营销案例报告饥饿营销 江西企业网站建设 网络安全性等级婚纱摄影网站模板 微博营销涉及的范围 三合一网站 网络信息安全投诉信息安全措施可分为 网站显示百度地图 网络安全性等级婚纱摄影网站模板 建网站怎么弄 滨州网站设计 广州做企业网站找哪家公司好 建网站怎么弄 信息安全 银监会 公司信息安全管理建议和意见 马云营销企业 国际网络安全组织 网络安全问题 原因 邢台做网站推广价格 网络安全扫描能够 河南信息安全公司排名 大连专业网站设计服务商 天津网站开发 营销案例报告饥饿营销 网络安全扫描能够 信息安全技术风险管理 博客营销细节 成都 信息安全大会 信息安全技术风险管理 网络安全入门到精通 公司网络安全经典事例 建网站怎么弄 独立网站建设 360与中国国家信息安全 具有品牌的广州做网站 电器 网络营销 网络安全攻击事件 网络信息安全投诉信息安全措施可分为 平台的营销 2013年 张建军 信息安全 博客营销细节 东莞高端品牌网站建设 信息安全测评师 考试时间 中国网络安全国际峰会 周口做网站 怎样创建网站 网络安全入门到精通 网站底部备案 具有品牌的广州做网站 网络安全扫描能够 温州企业网站建设 网站文件上传到服务器空间的网站文件有两个index 是不是不行 自制app网站 天津网站开发 中国网络安全国际峰会 公司网站开发制作 网站建设 选中企动力 台州公司网站建设 网络安全事件案例2017 营销培训视频 台州公司网站建设 网络营销外包公司 上海网站推广公司 东莞高端品牌网站建设 山西网络营销推广 专业网站优化制作公司 成都 信息安全大会 网络与信息安全的建议,-1 idcisp信息安全管理系统