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

<a class="close" href="https://xrx.nengpi.cn/">&times;</a>
php网站设计网络安全法 正式简述网络营销组合内容哈尔滨的网站设计聚美优品的营销模式ppt信息安全 全球排名密码技术是网络安全营销培训证书新手可以自己建网站吗南京专业微信营销公司有哪些小满借势营销海报自混沌初开,法则之力充斥世界,造就三千世界,而每个世界的原住民们,逐渐领悟法则的法门,集力量于一身,冲破世界的禁锢,成就神位。成就神位的人们仍然禁锢于另一方世界的一隅,在他们的前面仍然有法则之上的力量-原力阻碍他们的前行。当他们举步维艰时,发现每隔一万年,就会打开三千世界的桥梁,就能领悟原力冲破此世界,真正法身成圣,神位转换为圣位,不过成就圣位的条件却十分苛刻,需要人间香火的供奉,为拥有神位的人提供信仰之力,并且两个世界的神位者们决胜出一位圣者位, “我会再回来的,道祖,儒圣,虽然我败了,但你二人绝对在接下来的圣位战被打败,哈哈哈哈…哈哈”, “大言不惭,汝等卑鄙之人,不配存活于世,即使你窃取到轮回法则,不过你已被法则抛弃,下一世定有人将你彻底陨灭”儒圣对着此人闻言道,看着此人在身体逐渐泯灭之际,有一丝魂魄被牵引到一户人家当中,对此眉头紧紧的皱在一起,与道祖相视一眼后,飞向天空上方的桥梁。 在剑与魔法的世界里,剑士对战术士生来就很吃瘪的 “喂喂,醒醒!再不起床的都是懒狗。” “啊?这里是......?“世奕被惊醒了,脑袋磕在上铺的床板上 ”这里是王府,我们小姐昨晚把你带过来的。“ ”啊?什么东西?”他捂住自己的上额,眼角噙着泪花。 “行了,快点穿好衣服去见小姐。” ...... “好了,从今往后你就是我的近身侍卫了!”白发少女指着世奕说到。 “什么!?”古一白这一生运气很好,有爱人,亲人,知己,红颜,朋友,兄弟,…… 也守护了很多,失去了很多!  苏逍遥穿越仙侠世界,被系统告知外界危机重重,随时可能被修仙者一脚踩死!   无奈之下,他在桃花源签到十年!   每天任务就是:接露水、养宠、作画、垂钓、锻造兵器……   十年来,不断有人误入桃花源,热情好客的苏逍遥热情招待,对待一些友好的朋友还会送上自己锻造的兵器、丹药、画卷等等……   只是苏逍遥不知,   他锻造的兵器流入外界后,成为修仙者大打出手,不惜性命也要抢夺的至宝神兵!   他炼制的丹药,帮助天生废体之人摇身一变为天之骄子,名动一方!   他作的画被潦倒僧侣观想一刻,悟出无上佛法,成就无量佛陀果位,福泽一方!   ……   十年后,苏逍遥机缘巧合下离开桃花源,竟发现自己已经天下无敌了?穿越平行世界,参加选秀综艺,商献毫无意外成为偶像。 粉丝:明明可以靠脸吃饭,却偏偏靠才华,他重新定义了偶像! 商献:我不想做偶像啦,抄歌没有一点挑战性,想尝试去演戏! “人太帅,演什么都画风突兀,还是专心唱歌吧!” “这垃圾演技,安心当个偶像吧,演戏不适合你!” “演的什么鬼!差评!发首新歌我们才能原谅你!” ———— 多年后,当商献入选《时代周刊》年度风云人物,人们才恍然惊觉,这个偶像并不简单…… 年度风云人物评语:他创造了一个时代,在各种意义上!那年那天,爱神丘比特的神箭射中了我和你的心,冥冥之中让我们相遇,相识,相知到相爱。十七岁的我们在暴风雨中砥砺前行,闹过,吵过,也曾彼此厌倦,但这不正是真正的爱情吗?只有经历过暴风雨的洗礼,花儿才会开得更美!恐怖降临笼罩全球。 天才少年宋藏刚进恐怖副本就卡到Bug,获得偷听鬼怪心声的能力,还有大威天龙身上纹。 开局监狱蹬缝纫机,扭断车间主任亲儿子的头:小毕登,硬核物理超度了解一下! 去学院当教师,带领学生攻占学院:你就是校长鬼?跪下,给全校学生磕999个响头,见血的那种! 去小山村下乡,屠戮全村:“村长,麻烦你把村民都召集到一起,我有些事要宣布。” 这个玩家玩游戏,挺费鬼的……自从邪神入侵这个世界已经过去了不知多少万年,人类以自己的信仰与理智为柴薪,信奉着邪神,以求获得喘息。 然而邪神贪婪地吞食着人类的理智,整个世界已经满目疮痍。 直到那个人的到来…… 那撕碎一切的黑暗,将所有的恐怖和深邃都给吞没。 无论是杀人取乐的邪神,还是沉迷于欲望的怪诞,全部都因此而毁灭。 但是王浩听到这种事情却是嗤之以鼻。 “什么邪神杀手!全部都是瞎话!都是胡说!我只不过是喜欢吃那一些邪神而已!” 备用书名:邪神看到我叫爸爸,神佛救世主,请叫我无敌,谢谢。 一个现代人到了古代会做什么。 裴尘对自己说: 如果这一切都是梦,梦醒时自然烟消云散。 如果这一切不是梦,那我要做的就是,好好活着,也让我身边的人,好好活着。 大周王朝,内忧外患,民不聊生,在这样的环境下,自己不愿随波逐流,想要改变。 事情要么不做,要么就做到极致。 纺织、制弩、黑火药、香皂、制盐、炼钢…… 一步一步的布局,一点一点的强大。 也有对喜欢人儿的心动、感动、冲动,以及对传说中武功的向往。 一位父亲每年都要来到某一地方凭吊先烈,他的作家儿子一直不清楚父亲以前到底做过些什么事,直到父亲在老宅拆迁时自杀后才展开深入调查。原来父亲老宅曾发生过惊心动魄的往事:一位财主的小妾李小娘子跟管家私奔致使李家大院遭劫,主人动用祖传生计银渡过劫难,其后代及其同学在上海造房、创业、革命的故事,李家风华绝代的女人和管家私奔遭土匪奸杀、奸夫因何掉脑袋,救人者为何成了杀人者、水鬼兄弟为何违反军纪替兄报仇、青年因何刺杀太后失败、心仪的女人却是旧情人、奸夫儿子怎么成了李家后代,女间谍挑起中日战争、五十年恩怨情仇随着大事件蓬勃展开……
许可email营销怎么做 企业信息安全试卷 佛山网站建设公司 成都 企业网站建设公司 成都网站设计制作工作室 营销型手机网站 选手机网站 自己创网站 南京专业微信营销公司有哪些 信息安全管理制度建设 前世今生的改命方法咨询【www.richdady.cn】 投资项目的收益分析【www.richdady.cn】 耳鸣的咨询技巧咨询【www.richdady.cn】 前世今生的梦境解析【www.richdady.cn】 冤亲债主的干扰解决方法【www.richdady.cn】 去世的母亲的咨询技巧咨询【企鹅383550880】√转ihbwel 纠纷的法律咨询咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 孩子厌学的环境影响【企鹅383550880】√转ihbwel 婚姻生活不顺的前世因果咨询【微:qq383550880 】√转ihbwel 去世的母亲在哪咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 婚姻生活不顺的案例分享咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的前世修行咨询【σσЗ8З55О88О√转ihbwel 事业不顺的职场提升咨询威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 无形干扰的心理调适咨询【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 如何发现前世缘份【Q⒊⒏⒊⒌⒌O⒏⒏O】√转ihbwel 前世缘份的解读方法威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 冤亲债主对生活的影响【微:qq383550880 】√转ihbwel 升迁障碍的心理调适【www.richdady.cn】√转ihbwel 家庭关系【www.richdady.cn】√转ihbwel 前世老公的前世故事威:⒊⒏⒊⒌⒌O⒏⒏O√转ihbwel 网站设计模板免费建站 信丰做网站 网络安全产品对比 信息安全工程 第二版 中文版下载 网络安全科技公司 信息安全应急响应中心 微信公众号关注营销案例 32个信息安全技术国家标准 成都网站设计制作工作室 建立自己的网站 泰安市营销 常州网站建设key de pci 信息安全 网络安全日 赛 衡水移动端网站建设 国家网络安全制度 信息安全(四) 科研创新问题 阜阳网站设计 信息网络安全 司法解释 2017网络安全周 上海 南京餐饮网络营销公司 网络安全的内容是什么 信息安全赛事 自建网站 网站费用 互助网站制作公司 哈尔滨的网站设计 三级信息安全等级保护,-1 国家信息安全工程研究中心 网络营销咨询 南京餐饮网络营销公司 呼和浩特企业网站制作 网站意义 保定 网站建设 企业信息安全试卷 阜阳网站设计 衡水移动端网站建设 商城网站内容模块有哪些 杜蕾斯微博营销团队 长治做网站 实战网络营销课程 网络营销推广策略是什么意思 终端信息安全,-1 网络营销与马云 国家网络安全制度 信息安全服务资质办理 建功能网站 网络安全属于国家安全中的 合肥网站设计高端公司 网站设计模板免费建站 网站制作公司 郑州 三级信息安全等级保护,-1 网络营销专员工作要求 营销推广全网整合营销 做网站公 信息网络安全公安部重点实验室 星巴克营销 信息网络安全 司法解释 html 5+css 3网页设计与网站布局 从新手到高手 聚美优品的营销模式ppt信息安全 全球排名 政府系统信息安全 网络营销网上营销 营销型手机网站 html 5+css 3网页设计与网站布局 从新手到高手 防火墙网络安全 制作校园网站 网络安全法 正式 网络安全产品对比 选手机网站 信息安全分几大类 合肥网站设计高端公司 网站总类 小满借势营销海报 北京建网站 呼和浩特企业网站制作 哈尔滨的网站设计 饿了么营销 百度营销部 测试内容不属于网络安全测评的是 中国平安信息安全部门 电影网络营销推广公司 网络安全论坛主题 商城网站内容模块有哪些 手机网络营销怎么做 乐清做网站 网站制作流程图 北京建网站 公司网站域名是什么 各国网络安全部门 信息安全管理制度建设 中国 国家安全局 网络安全 建立自己的网站 自己创网站 博客营销图片大小佛山网站设计讯息 网络安全产品对比 国家网络安全 物联网网络营销之微信 互助网站制作公司 国家网络安全制度 广州做网站建设哪家专业 做门的网站建设 win2008网络安全 中国信息安全测评中心 上级主管部门怎么样查我的网站有没有做过优化优化之前和之后的效果 32个信息安全技术国家标准 亚信网络安全产业技术研究院 网络营销与马云 信丰做网站 重庆营销网站 腾讯网络安全研|究中心 上海信息安全行业协会 中国 国家安全局 网络安全 网络营销从事工作内容 长沙网络营销 优帮云 网络安全就业培训学校 郑州做网站汉狮网络 网络营销咨询 网络安全密码 中小型企业的网络安全 广东省信息网络安全 信丰做网站 网站意义 成都营销策划 湖南+网站建设 网络营销精准解决方案 企业网站模版 国家信息安全标准体系框架 实战网络营销课程 做门的网站建设 网络营销精准解决方案 许可email营销怎么做 2017网络安全周 上海 网站 title keywords description怎么设置 泰安市营销 网络营销促销特点 网络安全就业培训学校 常州网站建设key de