Alerts

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.

Examples

Wrap any text and an optional dismiss button in .alert and one of the four contextual classes (e.g., .alert-success) for basic alert messages.

No default class

Alerts don't have default classes, only base and modifier classes. A default gray alert doesn't make too much sense, so you're required to specify a type via contextual class. Choose from success, info, warning, or danger.

<div class="alert alert-success" role="alert">...</div>
<div class="alert alert-info" role="alert">...</div>
<div class="alert alert-warning" role="alert">...</div>
<div class="alert alert-danger" role="alert">...</div>

Adding an icon

Place the <i class="icon icon-warning" aria-hidden="true"></i> before the strong tag, switching out .icon-warning to match the correct icon to alert.

  <div class="alert alert-success" role="alert">
    <i class="icon icon-valid" aria-hidden="true"></i> <strong>...</strong>...
  </div>
  <div class="alert alert-info" role="alert">
    <i class="icon icon-notify_alert" aria-hidden="true"></i> <strong>...</strong>...
  </div>
  <div class="alert alert-warning" role="alert">
    <i class="icon icon-warning" aria-hidden="true"></i> <strong>...</strong>...
  </div>
  <div class="alert alert-danger" role="alert">
    <i class="icon icon-error" aria-hidden="true"></i> <strong>...</strong>...
  </div>
  

Dismissible alerts

Build on any alert by adding an optional .alert-dismissible and close button.

Requires JavaScript alert plugin

For fully functioning, dismissible alerts, you must use the alerts JavaScript plugin.

<div class="alert alert-warning alert-dismissible" role="alert">
  <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  <strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>

Ensure proper behavior across all devices

Be sure to use the <button> element with the data-dismiss="alert" data attribute.

Use the .alert-link utility class to quickly provide matching colored links within any alert.

<div class="alert alert-success" role="alert">
  <a href="#" class="alert-link">...</a>
</div>
<div class="alert alert-info" role="alert">
  <a href="#" class="alert-link">...</a>
</div>
<div class="alert alert-warning" role="alert">
  <a href="#" class="alert-link">...</a>
</div>
<div class="alert alert-danger" role="alert">
  <a href="#" class="alert-link">...</a>
</div>

Badges

Easily highlight new or unread items by adding a <span class="badge"> to links, Bootstrap navs, and more.

Inbox 42

<a href="#">Inbox <span class="badge">42</span></a>

<button class="btn btn-primary" type="button">
  Messages <span class="badge">4</span>
</button>

Self collapsing

When there are no new or unread items, badges will simply collapse (via CSS's :empty selector) provided no content exists within.

Cross-browser compatibility

Badges won't self collapse in Internet Explorer 8 because it lacks support for the :empty selector.

Adapts to active nav states

Built-in styles are included for placing badges in active states in pill navigations.

<ul class="nav nav-pills" role="tablist">
  <li role="presentation" class="active"><a href="#">Home <span class="badge">42</span></a></li>
  <li role="presentation"><a href="#">Profile</a></li>
  <li role="presentation"><a href="#">Messages <span class="badge">3</span></a></li>
</ul>

Available variations

Add any of the below mentioned modifier classes to change the appearance of a badge.

4 4 4 4 4 4 4
<span class="badge badge-default">4</span>
<span class="badge badge-primary">4</span>
<span class="badge badge-success">4</span>
<span class="badge badge-important">4</span>
<span class="badge badge-info">4</span>
<span class="badge badge-warning">4</span>
<span class="badge badge-inverse">4</span>

Breadcrumbs

Indicate the current page's location within a navigational hierarchy.

Separators are automatically added in CSS through :before and content.

<ol class="breadcrumb">
  <li><a href="#">Home</a></li>
  <li><a href="#">Library</a></li>
  <li class="active">Data</li>
</ol>

Button dropdowns

Use any button to trigger a dropdown menu by placing it within a .btn-group and providing the proper menu markup.

Plugin dependency

Button dropdowns require the dropdown plugin to be included in your version of Bootstrap.

Single button dropdowns

Turn a button into a dropdown toggle with some basic markup changes.

<!-- Single button -->
<div class="btn-group">
  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Action <span class="caret"></span>
  </button>
  <ul class="dropdown-menu">
    <li><a href="#">Action</a></li>
    <li><a href="#">Another action</a></li>
    <li><a href="#">Something else here</a></li>
    <li role="separator" class="divider"></li>
    <li><a href="#">Separated link</a></li>
  </ul>
</div>

Split button dropdowns

Similarly, create split button dropdowns with the same markup changes, only with a separate button.

<!-- Split button -->
<div class="btn-group">
  <button type="button" class="btn btn-danger">Action</button>
  <button type="button" class="btn btn-danger dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    <span class="caret"></span>
    <span class="sr-only">Toggle Dropdown</span>
  </button>
  <ul class="dropdown-menu">
    <li><a href="#">Action</a></li>
    <li><a href="#">Another action</a></li>
    <li><a href="#">Something else here</a></li>
    <li role="separator" class="divider"></li>
    <li><a href="#">Separated link</a></li>
  </ul>
</div>

Sizing

Button dropdowns work with buttons of all sizes.

<!-- Large button group -->
<div class="btn-group">
  <button class="btn btn-default btn-lg dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Large button <span class="caret"></span>
  </button>
  <ul class="dropdown-menu">
    ...
  </ul>
</div>

<!-- Small button group -->
<div class="btn-group">
  <button class="btn btn-default btn-sm dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Small button <span class="caret"></span>
  </button>
  <ul class="dropdown-menu">
    ...
  </ul>
</div>

<!-- Extra small button group -->
<div class="btn-group">
  <button class="btn btn-default btn-xs dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Extra small button <span class="caret"></span>
  </button>
  <ul class="dropdown-menu">
    ...
  </ul>
</div>

Dropup variation

Trigger dropdown menus above elements by adding .dropup to the parent.

<div class="btn-group dropup">
  <button type="button" class="btn btn-default">Dropup</button>
  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    <span class="caret"></span>
    <span class="sr-only">Toggle Dropdown</span>
  </button>
  <ul class="dropdown-menu">
    <!-- Dropdown menu links -->
  </ul>
</div>

Button groups

Group a series of buttons together on a single line with the button group. Add on optional JavaScript radio and checkbox style behavior with our buttons plugin.

Tooltips & popovers in button groups require special setting

When using tooltips or popovers on elements within a .btn-group, you'll have to specify the option container: 'body' to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip or popover is triggered).

Ensure correct role and provide a label

In order for assistive technologies – such as screen readers – to convey that a series of buttons is grouped, an appropriate role attribute needs to be provided. For button groups, this would be role="group", while toolbars should have a role="toolbar".

One exception are groups which only contain a single control (for instance the justified button groups with <button> elements) or a dropdown.

In addition, groups and toolbars should be given an explicit label, as most assistive technologies will otherwise not announce them, despite the presence of the correct role attribute. In the examples provided here, we use aria-label, but alternatives such as aria-labelledby can also be used.

Basic example

Wrap a series of buttons with .btn in .btn-group.

<div class="btn-group" role="group" aria-label="...">
  <button type="button" class="btn btn-default">Left</button>
  <button type="button" class="btn btn-default">Middle</button>
  <button type="button" class="btn btn-default">Right</button>
</div>

Button toolbar

Combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex components.

<div class="btn-toolbar" role="toolbar" aria-label="...">
  <div class="btn-group" role="group" aria-label="...">...</div>
  <div class="btn-group" role="group" aria-label="...">...</div>
  <div class="btn-group" role="group" aria-label="...">...</div>
</div>

Sizing

Instead of applying button sizing classes to every button in a group, just add .btn-group-* to each .btn-group, including when nesting multiple groups.




<div class="btn-group btn-group-lg" role="group" aria-label="...">...</div>
<div class="btn-group" role="group" aria-label="...">...</div>
<div class="btn-group btn-group-sm" role="group" aria-label="...">...</div>
<div class="btn-group btn-group-xs" role="group" aria-label="...">...</div>

Nesting

Place a .btn-group within another .btn-group when you want dropdown menus mixed with a series of buttons.

<div class="btn-group" role="group" aria-label="...">
  <button type="button" class="btn btn-default">1</button>
  <button type="button" class="btn btn-default">2</button>

  <div class="btn-group" role="group">
    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
      Dropdown
      <span class="caret"></span>
    </button>
    <ul class="dropdown-menu">
      <li><a href="#">Dropdown link</a></li>
      <li><a href="#">Dropdown link</a></li>
    </ul>
  </div>
</div>

Vertical variation

Make a set of buttons appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.

<div class="btn-group-vertical" role="group" aria-label="...">
  ...
</div>

Justified button groups

Make a group of buttons stretch at equal sizes to span the entire width of its parent. Also works with button dropdowns within the button group.

Handling borders

Due to the specific HTML and CSS used to justify buttons (namely display: table-cell), the borders between them are doubled. In regular button groups, margin-left: -1px is used to stack the borders instead of removing them. However, margin doesn't work with display: table-cell. As a result, depending on your customizations to Bootstrap, you may wish to remove or re-color the borders.

IE8 and borders

Internet Explorer 8 doesn't render borders on buttons in a justified button group, whether it's on <a> or <button> elements. To get around that, wrap each button in another .btn-group.

See #12476 for more information.

With <a> elements

Just wrap a series of .btns in .btn-group.btn-group-justified.

<div class="btn-group btn-group-justified" role="group" aria-label="...">
  ...
</div>

Links acting as buttons

If the <a> elements are used to act as buttons – triggering in-page functionality, rather than navigating to another document or section within the current page – they should also be given an appropriate role="button".

With <button> elements

To use justified button groups with <button> elements, you must wrap each button in a button group. Most browsers don't properly apply our CSS for justification to <button> elements, but since we support button dropdowns, we can work around that.

<div class="btn-group btn-group-justified" role="group" aria-label="...">
  <div class="btn-group" role="group">
    <button type="button" class="btn btn-default">Left</button>
  </div>
  <div class="btn-group" role="group">
    <button type="button" class="btn btn-default">Middle</button>
  </div>
  <div class="btn-group" role="group">
    <button type="button" class="btn btn-default">Right</button>
  </div>
</div>

Call-outs

Default call out boxes have both top and bottom shadows. To make a call out box add the base class .call-out-box to any block level element.

Call outs can be positioned using grids, and can contain other components.

Default

Success story

        <div class="call-out-box">
         <div class="call-out-body">
            ...
         </div>
        </div>
    

No Top Border

You can remove the top shadow by adding the modifier class Deprecated: .call-out-box--no-top Expected: .call-out-box .no-top New: .call-out-body this class helps give a starting baseline for an inner contents of the call-out.

Look, I'm in a call-out!

        <div class="call-out-box no-top">
         <div class="call-out-body">
            ...
         </div>
        </div>
    

No Bottom Border

You can remove the bottom shadow by adding the modifier class Deprecated: .call-out-box--no-bottom Expected: .call-out-box .no-bottom

Look, I'm in a call-out!

        <div class="call-out-box no-bottom">
         <div class="call-out-body">
            ...
         </div>
        </div>
    

Cartridge colors

For a quicker load time, use the CSS styles instead of image files when showing cartridge colors.

Individual color symbols

<div class="cartridge cartridge-black"></div>
<div class="cartridge cartridge-cyan"></div>
<div class="cartridge cartridge-magenta"></div>
<div class="cartridge cartridge-yellow"></div>

Color printer symbol

Place .cartridge-cmyk after each color class to arrange the colors inline with one another. The colors must be written in the order shown below for the layering to work.

<div class="cartridge-cmyk"></div>

Mono printer symbol

Place .cartridge-mono after each color class to arrange the colors inline with one another. The colors must be written in the order shown below for the layering to work.

<div class="cartridge-mono"></div>

Dot-matrix printer symbol

Use .cartridge-dot-matrix to create this symbol.

<div class="cartridge-dot-matrix"></div>

Sizing and alignment

The default alignment is left-aligned. You can change the alignment by wrapping the group of colors in a div with the following class options: .cartridge-center, .cartridge-right and .cartridge-left. If it's a color, mono or dot-matrix printer symbol, you will need to add .cartridge-cmyk, .cartridge-mono or .cartridge-dot-matrix after the alignment class for correct spacing. If you need to create a block element, change the .cartridge to .cartridge-block. You can also make the color dots smaller by changing the .cartridge to .cartridge-sm.

<div class="cartridge-left cartridge-cmyk"></div>
<div class="cartridge-left cartridge-mono"></div>
<div class="cartridge-left cartridge-dot-matrix"></div>
<div class="cartridge cartridge-black cartridge-left"></div>
<div class="cartridge-sm cartridge-cmyk"></div>
<div class="cartridge-sm cartridge-dot-matrix"></div>
<div class="cartridge cartridge-block cartridge-cyan"></div>

Dropdowns

Toggleable, contextual menu for displaying lists of links. Made interactive with the dropdown JavaScript plugin.

Wrap the dropdown's trigger and the dropdown menu within .dropdown, or another element that declares position: relative;. Then add the menu's HTML.

<div class="dropdown">
  <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
    Dropdown
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
    <li><a href="#">Action</a></li>
    <li><a href="#">Another action</a></li>
    <li><a href="#">Something else here</a></li>
    <li role="separator" class="divider"></li>
    <li><a href="#">Separated link</a></li>
  </ul>
</div>

Dropdown menus can be changed to expand upwards (instead of downwards) by adding .dropup to the parent.

<div class="dropup">
  <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Dropup
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
    <li><a href="#">Action</a></li>
    <li><a href="#">Another action</a></li>
    <li><a href="#">Something else here</a></li>
    <li role="separator" class="divider"></li>
    <li><a href="#">Separated link</a></li>
  </ul>
</div>

By default, a dropdown menu is automatically positioned 100% from the top and along the left side of its parent. Add .dropdown-menu-right to a .dropdown-menu to right align the dropdown menu.

May require additional positioning

Dropdowns are automatically positioned via CSS within the normal flow of the document. This means dropdowns may be cropped by parents with certain overflow properties or appear out of bounds of the viewport. Address these issues on your own as they arise.

Deprecated .pull-right alignment

As of v3.1.0, we've deprecated .pull-right on dropdown menus. To right-align a menu, use .dropdown-menu-right. Right-aligned nav components in the navbar use a mixin version of this class to automatically align the menu. To override it, use .dropdown-menu-left.

<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dLabel">
  ...
</ul>

Add a header to label sections of actions in any dropdown menu.

<ul class="dropdown-menu" aria-labelledby="dropdownMenu3">
  ...
  <li class="dropdown-header">Dropdown header</li>
  ...
</ul>

Add a divider to separate series of links in a dropdown menu.

<ul class="dropdown-menu" aria-labelledby="dropdownMenuDivider">
  ...
  <li role="separator" class="divider"></li>
  ...
</ul>

Add .disabled to a <li> in the dropdown to disable the link.

<ul class="dropdown-menu" aria-labelledby="dropdownMenu4">
  <li><a href="#">Regular link</a></li>
  <li class="disabled"><a href="#">Disabled link</a></li>
  <li><a href="#">Another link</a></li>
</ul>

Figure caption

Combining a caption with an image.

Usage notes

The default text color is n6 on a white background. For light backgrounds (recommended brand colors: n1-n4, b8), text should be black. For dark backgrounds (recommended brand colors: n6-n9, b7, black), text should be white.

Basic

Figure: Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.

<figure>
  <img src="..." class="img-responsive">
  <figcaption>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.</figcaption>
  <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.</p>
</figure>

Optional

Usage notes

Optional rule can be used when additional visual separation is need from content blocks. Same color recommendations apply as the basic figure caption.

Figure: Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.

<figure>
  <img src="..." class="img-responsive">>
  <figcaption>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod.</figcaption>
  <hr>
  <p>...</p>
</figure>

Input groups

Extend form controls by adding text or buttons before, after, or on both sides of any text-based <input>. Use .input-group with an .input-group-addon or .input-group-btn to prepend or append elements to a single .form-control.

Textual <input>s only

Avoid using <select> elements here as they cannot be fully styled in WebKit browsers.

Avoid using <textarea> elements here as their rows attribute will not be respected in some cases.

Tooltips & popovers in input groups require special setting

When using tooltips or popovers on elements within an .input-group, you'll have to specify the option container: 'body' to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip or popover is triggered).

Don't mix with other components

Do not mix form groups or grid column classes directly with input groups. Instead, nest the input group inside of the form group or grid-related element.

Always add labels

Screen readers will have trouble with your forms if you don't include a label for every input. For these input groups, ensure that any additional label or functionality is conveyed to assistive technologies.

The exact technique to be used (visible <label> elements, <label> elements hidden using the .sr-only class, or use of the aria-label, aria-labelledby, aria-describedby, title or placeholder attribute) and what additional information will need to be conveyed will vary depending on the exact type of interface widget you're implementing. The examples in this section provide a few suggested, case-specific approaches.

Basic example

Place one add-on or button on either side of an input. You may also place one on both sides of an input.

We do not support multiple add-ons (.input-group-addon or .input-group-btn) on a single side.

We do not support multiple form-controls in a single input group.

@

@example.com

$ .00

https://example.com/users/
<div class="input-group">
  <span class="input-group-addon" id="basic-addon1">@</span>
  <input type="text" class="form-control" placeholder="Username" aria-describedby="basic-addon1">
</div>

<div class="input-group">
  <input type="text" class="form-control" placeholder="Recipient's username" aria-describedby="basic-addon2">
  <span class="input-group-addon" id="basic-addon2">@example.com</span>
</div>

<div class="input-group">
  <span class="input-group-addon">$</span>
  <input type="text" class="form-control" aria-label="Amount (to the nearest dollar)">
  <span class="input-group-addon">.00</span>
</div>

<label for="basic-url">Your vanity URL</label>
<div class="input-group">
  <span class="input-group-addon" id="basic-addon3">https://example.com/users/</span>
  <input type="text" class="form-control" id="basic-url" aria-describedby="basic-addon3">
</div>

Transparency & Input Group Focus (Search Bar)

Using a combination of border helper classes, the .bg-transparent class, and the .input-group-focus class, one can create a search bar. The .input-group-focus class removes the border of all interior child elements, removes the :hover and :focus styling for any child input tags, and resets the :hover and :focus to occur on the element with the .input-group-focus.

Also, styling the anchor tag with the same styles as those normally given to the span tag allows links to be made around icons, such as those in the examples below.

<div class="input-group input-group-focus">
  <a class="input-group-addon border-none bg-transparent">
    <span class="icon icon-search" aria-hidden="true"></span>
  </a>
  <input type="text" class="form-control border-none padding-before-none" placeholder="Search" aria-label="search">
</div>
<div class="input-group input-group-focus">
  <input type="text" class="form-control border-none" placeholder="Search" aria-label="search">
  <a class="input-group-addon border-none bg-transparent">
    <span class="icon icon-search" aria-hidden="true"></span>
  </a>
</div>

Sizing

Add the relative form sizing classes to the .input-group itself and contents within will automatically resize—no need for repeating the form control size classes on each element.

@

@

@
<div class="input-group input-group-lg">
  <span class="input-group-addon" id="sizing-addon1">@</span>
  <input type="text" class="form-control" placeholder="Username" aria-describedby="sizing-addon1">
</div>

<div class="input-group">
  <span class="input-group-addon" id="sizing-addon2">@</span>
  <input type="text" class="form-control" placeholder="Username" aria-describedby="sizing-addon2">
</div>

<div class="input-group input-group-sm">
  <span class="input-group-addon" id="sizing-addon3">@</span>
  <input type="text" class="form-control" placeholder="Username" aria-describedby="sizing-addon3">
</div>

Checkboxes and radio addons

Place any checkbox or radio option within an input group's addon instead of text.

<div class="row">
<div class="col-lg-6">
  <div class="input-group">
    <span class="input-group-addon">
      <label>
        <input type="checkbox" aria-label="...">
        <span></span>
      </label>
    </span>
    <input type="text" class="form-control" aria-label="...">
  </div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
<div class="col-lg-6">
  <div class="input-group">
    <span class="input-group-addon">
      <label>
        <input type="radio" aria-label="...">
        <span></span>
      </label>
    </span>
    <input type="text" class="form-control" aria-label="...">
  </div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->

Button addons

Buttons in input groups are a bit different and require one extra level of nesting. Instead of .input-group-addon, you'll need to use .input-group-btn to wrap the buttons. This is required due to default browser styles that cannot be overridden.

<div class="row">
  <div class="col-lg-6">
    <div class="input-group">
      <span class="input-group-btn">
        <button class="btn btn-default" type="button">Go!</button>
      </span>
      <input type="text" class="form-control" placeholder="Search for...">
    </div><!-- /input-group -->
  </div><!-- /.col-lg-6 -->
  <div class="col-lg-6">
    <div class="input-group">
      <input type="text" class="form-control" placeholder="Search for...">
      <span class="input-group-btn">
        <button class="btn btn-default" type="button">Go!</button>
      </span>
    </div><!-- /input-group -->
  </div><!-- /.col-lg-6 -->
</div><!-- /.row -->

Buttons with dropdowns

<div class="row">
  <div class="col-lg-6">
    <div class="input-group">
      <div class="input-group-btn">
        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Action <span class="caret"></span></button>
        <ul class="dropdown-menu">
          <li><a href="#">Action</a></li>
          <li><a href="#">Another action</a></li>
          <li><a href="#">Something else here</a></li>
          <li role="separator" class="divider"></li>
          <li><a href="#">Separated link</a></li>
        </ul>
      </div><!-- /btn-group -->
      <input type="text" class="form-control" aria-label="...">
    </div><!-- /input-group -->
  </div><!-- /.col-lg-6 -->
  <div class="col-lg-6">
    <div class="input-group">
      <input type="text" class="form-control" aria-label="...">
      <div class="input-group-btn">
        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Action <span class="caret"></span></button>
        <ul class="dropdown-menu dropdown-menu-right">
          <li><a href="#">Action</a></li>
          <li><a href="#">Another action</a></li>
          <li><a href="#">Something else here</a></li>
          <li role="separator" class="divider"></li>
          <li><a href="#">Separated link</a></li>
        </ul>
      </div><!-- /btn-group -->
    </div><!-- /input-group -->
  </div><!-- /.col-lg-6 -->
</div><!-- /.row -->

Segmented buttons

<div class="input-group">
  <div class="input-group-btn">
    <!-- Button and dropdown menu -->
  </div>
  <input type="text" class="form-control" aria-label="...">
</div>

<div class="input-group">
  <input type="text" class="form-control" aria-label="...">
  <div class="input-group-btn">
    <!-- Button and dropdown menu -->
  </div>
</div>

Multiple buttons

While you can only have one add-on per side, you can have multiple buttons inside a single .input-group-btn.

<div class="input-group">
  <div class="input-group-btn">
    <!-- Buttons -->
  </div>
  <input type="text" class="form-control" aria-label="...">
</div>

<div class="input-group">
  <input type="text" class="form-control" aria-label="...">
  <div class="input-group-btn">
    <!-- Buttons -->
  </div>
</div>

Jumbotron

A lightweight, flexible component that can optionally extend the entire viewport to showcase key content on your site.

Basic Example

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

  <div class="jumbotron jumbo-style">
    <h1>Hello, world!</h1>
    <p>...</p>
    <p><a class="btn btn-ghost btn-lg" href="#" role="button">Learn more</a></p>
  </div>
  

Styling

The jumbotron has a unique styling that is not found elsewhere in the framework. This is applied by using the .jumbo-style class. Remove the class to allow the default framework styling to take effect.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

  <div class="jumbotron">
    <h1>Hello, world!</h1>
    <p>...</p>
    <p><a class="btn btn-ghost btn-lg" href="#" role="button">Learn more</a></p>
  </div>
  

Heading style

If you need to duplicate the styling of the jumbotron header, you can do so by adding class .jumbo to any <h1> tag.

Jumbotron H1

Regular H1

<h1 class="jumbo">Jumbotron H1</h1>
<h1>Regular H1</h1>
  

Sizing

To change the width and/or height of the Jumbotron, use the following approaches.

Full Width

To make the jumbotron full width, place it outside all .container classes and instead add a .container class within.

<div class="jumbotron jumbo-style">
  <div class="container">
    ...
  </div>
</div>
  

Small

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-small">
  <h1>Hello, world!</h1>
  <p>This is a simple hero unit.</p>
</div>
  

Medium

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-medium">
  <h1>Hello, world!</h1>
  <p>This is a simple hero unit.</p>
</div>
  

Large

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <h1>Hello, world!</h1>
  <p>This is a simple hero unit.</p>
</div>
  

Extra Large

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-extra-large">
  <h1>Hello, world!</h1>
  <p>This is a simple hero unit.</p>
</div>
  

Content Alignment

The content within the jumbotron can be positioned in the following nine positions. The content must be wrapped within a div with the appropriate alignment class as shown in the examples below. To retain the padding from the jumbotron, add the .align-container class to the same container.

These examples are using the Alignments classes.

Combined Alignments

Top Left

Center Left

Bottom Left

Top Center

Center Center

Bottom Center

Top Right

Center Right

Bottom Right

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-top-left">
    <p>Top Left</p>
  </div>
  <div class="align-container align-center-left">
    <p>Center Left</p>
  </div>
  <div class="align-container align-bottom-left">
    <p>Bottom Left</p>
  </div>
  <div class="align-container align-top-center">
    <p>Top Center</p>
  </div>
  <div class="align-container align-center-center">
    <p>Center Center</p>
  </div>
  <div class="align-container align-bottom-center">
    <p>Bottom Center</p>
  </div>
  <div class="align-container align-top-right">
    <p>Top Right</p>
  </div>
  <div class="align-container align-center-right">
    <p>Center Right</p>
  </div>
  <div class="align-container align-bottom-right">
    <p>Bottom Right</p>
  </div>
</div>
  

Combined Alignments without Padding

Top Left

Center Left

Bottom Left

Top Center

Center Center

Bottom Center

Top Right

Center Right

Bottom Right

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-top-left">
    <p>Top Left</p>
  </div>
  <div class="align-center-left">
    <p>Center Left</p>
  </div>
  <div class="align-bottom-left">
    <p>Bottom Left</p>
  </div>
  <div class="align-top-center">
    <p>Top Center</p>
  </div>
  <div class="align-center-center">
    <p>Center Center</p>
  </div>
  <div class="align-bottom-center">
    <p>Bottom Center</p>
  </div>
  <div class="align-top-right">
    <p>Top Right</p>
  </div>
  <div class="align-center-right">
    <p>Center Right</p>
  </div>
  <div class="align-bottom-right">
    <p>Bottom Right</p>
  </div>
</div>
  

Top Left

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-top-left">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Center Left

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-center-left">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Bottom Left

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-bottom-left">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Top Center

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-top-center">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Center Center

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-center-center">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Bottom Center

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-bottom-center">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Top Right

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-top-right">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Center Right

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-center-right">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Bottom Right

Hello, world!

This is a simple hero unit.

<div class="jumbotron jumbo-style jumbotron-large">
  <div class="align-container align-bottom-right">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit.</p>
  </div>
</div>
  

Using the Grid System

Extend Jumbotron with the grid system by applying appropriate classes as seen below. This allows for different widths of text for different designs and layouts.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

<div class="jumbotron jumbo-style">
  <div class="row">
    <div class="col-md-6">
      <h1>...</h1>
      <p>...</p>
    </div>
  </div>
</div>
  

Moving position of a text element

Apply the bootstrap offset column classes to position the text within the jumbotron as you would regular columns.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

  <div class="jumbotron jumbo-style">
    <div class="row">
      <div class="col-md-6 col-md-offset-3">
        <h1>...</h1>
        <p>...</p>
      </div>
    </div>
  </div>
  

Using Images

When using images in the jumbotron, there are three rules to remember:

  1. Always place any content within a grid (i.e., a column div nested under a row div). If this is not done, the content will always display behind an image placed outside of the area.
  2. Place the image markup before the grid to make it show behind the content.
  3. Place the image markup after the grid to make it show in front of the content.

Image Behind Content

In the example below, the 400 x 400 background image is shown behind the grid (which also contains a 100 x 100 image) because the 400 x 400 image markup is placed above the grid markup.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

<div class="jumbotron jumbo-style">
  <img src="https://fakeimg.pl/400x400" alt="" title="" width="400" height="400">
  <div class="row">
    <div class="col-xs-12">
      <h1>Hello, world!</h1>
      <img src="https://placeimg.com/100/100/tech" class="pull-right">
      <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
      <p><a class="btn btn-ghost btn-lg" href="#" role="button">Learn more</a></p>
    </div>
  </div>
</div>
  

Image on Top of Content

In the example below, the 400 x 400 background image is shown on top of the grid (which also contains a 100 x 100 image) because the 400 x 400 image markup is placed after the grid markup.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

<div class="jumbotron jumbo-style">
  <div class="row">
    <div class="col-xs-12">
      <h1>Hello, world!</h1>
      <img src="https://placeimg.com/100/100/tech" class="pull-right">
      <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
      <p><a class="btn btn-ghost btn-lg" href="#" role="button">Learn more</a></p>
    </div>
  </div>
  <img src="https://fakeimg.pl/400x400" alt="" title="" width="400" height="400">
</div>
  

Responsive Images with Picturefill

The third party Picturefill plugin is implemented with a few markup updates. The last image specified in the markup is for mobile devices and the min-width breakpoints specified align with Bootstrap's breakpoints.

…

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

<div class="jumbotron jumbo-style">
  <picture>
    <!--[if IE 9]><video style="display: none;"><![endif]-->
    <source srcset="https://fakeimg.pl/1200x800" media="(min-width: 1200px)">
    <source srcset="https://fakeimg.pl/900x600" media="(min-width: 992px)">
    <source srcset="https://fakeimg.pl/600x400" media="(min-width: 768px)">
    <!--[if IE 9]></video><![endif]-->
    <img srcset="https://fakeimg.pl/300x200" alt="…">
  </picture>
  <div class="row">
    <div class="col-xs-12">
      <h1>Hello, world!</h1>
      <img src="https://placeimg.com/100/100/tech" class="pull-right">
      <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
      <p><a class="btn btn-ghost btn-lg" href="#" role="button">Learn more</a></p>
    </div>
  </div>
</div>
  

Transitional Image

Using the class .transition-image for an <img> tag enables it to be positioned lower than the container by setting a negative bottom margin with an inline style or through a JS DOM manipulation.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn more

  <div class="jumbotron jumbo-style">
    <h1>Hello, world!</h1>
    <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
    <p><a class="btn btn-ghost btn-lg" href="#" role="button">Learn more</a></p>
    <img class="transition-image" style="margin-bottom: -100px;" src="https://fakeimg.pl/100x100" alt="" title="">
  </div>
  

Labels

Example

Example heading New

Example heading New

Example heading New

Example heading New

Example heading New
Example heading New
<h3>Example heading <span class="label label-default">New</span></h3>

Available variations

Add any of the below mentioned modifier classes to change the appearance of a label.

Default Inverse Important Info Success Warning
<span class="label label-default">Default</span>
<span class="label label-inverse">Inverse</span>
<span class="label label-important">Important</span>
<span class="label label-info">Info</span>
<span class="label label-success">Success</span>
<span class="label label-warning">Warning</span>

Have tons of labels?

Rendering problems can arise when you have dozens of inline labels within a narrow container, each containing its own inline-block element (like an icon). The way around this is setting display: inline-block;. For context and an example, see #13219.

Lexicons

Includes 413 icons in font format from the LXCore custom "Lexicons" set. The icons are vector based, which allows them to be scaled to any size without image pixelation. Any color may also be applied through with .text--{color} classes.

Icons

  • icon icon-actual_size
  • icon icon-add
  • icon icon-add-file-icon
  • icon icon-add_document
  • icon icon-add_thin
  • icon icon-address-book
  • icon icon-address-book-search
  • icon icon-adf
  • icon icon-admin
  • icon icon-annotations_arrow
  • icon icon-annotations_arrow_with_handle
  • icon icon-annotations_diagonal_line
  • icon icon-annotations_diagonal_line_with_handles
  • icon icon-annotations_oval_outline
  • icon icon-annotations_oval_outline_with_handles
  • icon icon-annotations_rectangle_outline
  • icon icon-annotations_rectangle_outline_with_handles
  • icon icon-annotations_templates
  • icon icon-apple
  • icon icon-arrow_bottom
  • icon icon-arrow_bottom_left
  • icon icon-arrow_bottom_right
  • icon icon-arrow_left
  • icon icon-arrow_right
  • icon icon-arrow_top
  • icon icon-arrow_top_left
  • icon icon-arrow_top_right
  • icon icon-ascending
  • icon icon-back
  • icon icon-backspace
  • icon icon-badge
  • icon icon-basket
  • icon icon-batch
  • icon icon-batch_image
  • icon icon-bell
  • icon icon-best_fit
  • icon icon-binoculars
  • icon icon-blank-pages
  • icon icon-bookmark
  • icon icon-bookmark-add
  • icon icon-bookmark-page-confidential
  • icon icon-brightness
  • icon icon-browse
  • icon icon-brush
  • icon icon-calendar
  • icon icon-calendar_with_clock
  • icon icon-camera
  • icon icon-camera_switch
  • icon icon-cancel
  • icon icon-capture
  • icon icon-card-copy-flip
  • icon icon-card-view
  • icon icon-card_copy
  • icon icon-caret_bottom
  • icon icon-caret_bottom_thin
  • icon icon-caret_circle_bottom
  • icon icon-caret_circle_left
  • icon icon-caret_circle_outline_bottom
  • icon icon-caret_circle_outline_left
  • icon icon-caret_circle_outline_right
  • icon icon-caret_circle_outline_top
  • icon icon-caret_circle_right
  • icon icon-caret_circle_top
  • icon icon-caret_left
  • icon icon-caret_left_thin
  • icon icon-caret_right
  • icon icon-caret_right_thin
  • icon icon-caret_top
  • icon icon-caret_top_thin
  • icon icon-cart
  • icon icon-cart_express_checkout
  • icon icon-cartridge_inkjet
  • icon icon-cartridge_laser
  • icon icon-cartridge_linea
  • icon icon-cartridge_ribbon
  • icon icon-case_study
  • icon icon-checklist_capture
  • icon icon-checkmark
  • icon icon-circle
  • icon icon-circle_outline
  • icon icon-clipboard
  • icon icon-clipboard_with_clock
  • icon icon-clock
  • icon icon-close
  • icon icon-cloud
  • icon icon-cloud_connection_error
  • icon icon-cloud_connection_help
  • icon icon-cloud_connection_success
  • icon icon-cloud_download
  • icon icon-cloud_share
  • icon icon-code
  • icon icon-collapse_all
  • icon icon-collate
  • icon icon-color
  • icon icon-contact
  • icon icon-content
  • icon icon-contextual_menu
  • icon icon-contextual_menu_arrow_bottom
  • icon icon-contrast
  • icon icon-control
  • icon icon-copy
  • icon icon-copy-from
  • icon icon-copy-to
  • icon icon-cover-page-setup
  • icon icon-create-booklet
  • icon icon-credit-card
  • icon icon-crop
  • icon icon-cut
  • icon icon-darkness
  • icon icon-dashboard
  • icon icon-data_storage
  • icon icon-dealer
  • icon icon-delete
  • icon icon-delivered
  • icon icon-deploy_all
  • icon icon-descending
  • icon icon-deselect_all
  • icon icon-desktop_monitor
  • icon icon-device
  • icon icon-device_dot_matrix
  • icon icon-device_laser
  • icon icon-diamond
  • icon icon-diamond_outline
  • icon icon-dns_record
  • icon icon-document
  • icon icon-document_composition
  • icon icon-document_outline
  • icon icon-document_shortcut
  • icon icon-dots_horizontal
  • icon icon-dots_triangle_left
  • icon icon-dots_vertical
  • icon icon-double_caret_right
  • icon icon-download
  • icon icon-drawable-file
  • icon icon-drawer
  • icon icon-eco_settings
  • icon icon-edge-erase
  • icon icon-edit
  • icon icon-embedded_apps
  • icon icon-enter_full_screen
  • icon icon-envelope
  • icon icon-envelope_closed
  • icon icon-error
  • icon icon-ethernet-cancel
  • icon icon-ethernet-unknown
  • icon icon-exe
  • icon icon-exit_full_screen
  • icon icon-expand_all
  • icon icon-expires
  • icon icon-export
  • icon icon-express_scanning_printing
  • icon icon-eye
  • icon icon-eye_strike_thru
  • icon icon-facebook
  • icon icon-fatal_error
  • icon icon-fax
  • icon icon-fax-receive
  • icon icon-fax-send
  • icon icon-field
  • icon icon-field_error
  • icon icon-file_format
  • icon icon-filter
  • icon icon-finishing-options
  • icon icon-fit_to_height
  • icon icon-fit_to_width
  • icon icon-flag
  • icon icon-flame
  • icon icon-flame_add
  • icon icon-flash
  • icon icon-flash_automatic
  • icon icon-flash_off
  • icon icon-flow
  • icon icon-folder
  • icon icon-folder-add
  • icon icon-folder-browse
  • icon icon-folder-confidential
  • icon icon-folder-repeat
  • icon icon-folder_shortcut
  • icon icon-forget_user
  • icon icon-forms
  • icon icon-ftp
  • icon icon-gallery
  • icon icon-gear
  • icon icon-gear_multiple
  • icon icon-glasses
  • icon icon-global
  • icon icon-globe
  • icon icon-google_plus
  • icon icon-group-add
  • icon icon-hand
  • icon icon-hardware
  • icon icon-header-footer
  • icon icon-held-jobs-confidential-folder
  • icon icon-help
  • icon icon-highlight
  • icon icon-history
  • icon icon-home
  • icon icon-image
  • icon icon-image-handling
  • icon icon-image_resolution
  • icon icon-import
  • icon icon-in_progress
  • icon icon-in_transit
  • icon icon-inbox
  • icon icon-input
  • icon icon-invoice
  • icon icon-invoice_approval
  • icon icon-job-queue
  • icon icon-key
  • icon icon-keyboard
  • icon icon-laptop
  • icon icon-left_pane
  • icon icon-library
  • icon icon-line_error
  • icon icon-link
  • icon icon-linkedin
  • icon icon-list
  • icon icon-location
  • icon icon-lock
  • icon icon-lock_with_pin
  • icon icon-log
  • icon icon-log_off
  • icon icon-magnify_zoom_in
  • icon icon-magnify_zoom_out
  • icon icon-map
  • icon icon-margin-shift
  • icon icon-medal
  • icon icon-memory
  • icon icon-message_bubble
  • icon icon-mfp_option
  • icon icon-minus_circle
  • icon icon-mobile
  • icon icon-monitor
  • icon icon-move
  • icon icon-multifeed-sensor
  • icon icon-multiple_annotations
  • icon icon-navigate_up
  • icon icon-network
  • icon icon-nfc
  • icon icon-not_allowed
  • icon icon-notify_alert
  • icon icon-numbers
  • icon icon-numpad
  • icon icon-numpad-star
  • icon icon-ocr
  • icon icon-offset-pages
  • icon icon-open_id
  • icon icon-option-card
  • icon icon-orders
  • icon icon-original-size
  • icon icon-overview
  • icon icon-pages
  • icon icon-pages-per-side
  • icon icon-paper-jam
  • icon icon-paper_duplex
  • icon icon-paper_duplex_binding
  • icon icon-paper_hole_punch
  • icon icon-paper_hole_punch_plus_stapler
  • icon icon-paper_one_staple
  • icon icon-paper_tray
  • icon icon-paper_two_staples
  • icon icon-parts_general
  • icon icon-pause
  • icon icon-pay
  • icon icon-pdf_document
  • icon icon-pdf_secure_document
  • icon icon-pen
  • icon icon-pencil_strike_thru
  • icon icon-people
  • icon icon-pin
  • icon icon-play
  • icon icon-pound
  • icon icon-power
  • icon icon-presentation
  • icon icon-previous
  • icon icon-print
  • icon icon-print_binding
  • icon icon-print_binding_off
  • icon icon-print_orientation_landscape
  • icon icon-print_orientation_portrait
  • icon icon-private_gallery
  • icon icon-process_designer
  • icon icon-processor
  • icon icon-project
  • icon icon-properties
  • icon icon-qr_code
  • icon icon-recent_activity
  • icon icon-redo
  • icon icon-refresh
  • icon icon-reminder
  • icon icon-remote-copy
  • icon icon-remove
  • icon icon-remove_thin
  • icon icon-report
  • icon icon-requests
  • icon icon-resolution
  • icon icon-restart
  • icon icon-restore
  • icon icon-return
  • icon icon-ribbon
  • icon icon-right_pane
  • icon icon-rotate_left
  • icon icon-rotate_right
  • icon icon-round_rectangle
  • icon icon-round_rectangle_outline
  • icon icon-route_anywhere
  • icon icon-route_back
  • icon icon-route_forward
  • icon icon-route_up
  • icon icon-save
  • icon icon-scale
  • icon icon-scan
  • icon icon-scan-edge-to-edge
  • icon icon-scan-preview
  • icon icon-scan-qualty
  • icon icon-scan-to-usb
  • icon icon-search
  • icon icon-secure_document
  • icon icon-select
  • icon icon-select_all
  • icon icon-select_all_annotations
  • icon icon-select_column
  • icon icon-send-as
  • icon icon-send-copy
  • icon icon-send_to
  • icon icon-separator-sheets
  • icon icon-server
  • icon icon-share
  • icon icon-shield
  • icon icon-shield_with_lock
  • icon icon-single_annotation
  • icon icon-soco_process
  • icon icon-soco_process_model
  • icon icon-software
  • icon icon-solutions_app
  • icon icon-solutions_smart
  • icon icon-sound
  • icon icon-sound-disabled
  • icon icon-split_screen_horizontal
  • icon icon-split_screen_vertical
  • icon icon-spreadsheet
  • icon icon-stamp
  • icon icon-star
  • icon icon-status
  • icon icon-sticky_note
  • icon icon-sticky_note_outline
  • icon icon-stop
  • icon icon-strategic
  • icon icon-sync
  • icon icon-tags
  • icon icon-tasks_list
  • icon icon-telekom
  • icon icon-telephone
  • icon icon-telephone-dial-tone
  • icon icon-test
  • icon icon-text
  • icon icon-text_document
  • icon icon-thumbnails
  • icon icon-thumbs_down
  • icon icon-thumbs_down_outline
  • icon icon-thumbs_up
  • icon icon-thumbs_up_outline
  • icon icon-toner
  • icon icon-touchscreen
  • icon icon-tray-empty
  • icon icon-tray-low
  • icon icon-triangle_bottom
  • icon icon-triangle_bottom_left
  • icon icon-triangle_bottom_right
  • icon icon-triangle_left
  • icon icon-triangle_outline_bottom
  • icon icon-triangle_outline_bottom_left
  • icon icon-triangle_outline_bottom_right
  • icon icon-triangle_outline_left
  • icon icon-triangle_outline_right
  • icon icon-triangle_outline_top
  • icon icon-triangle_outline_top_left
  • icon icon-triangle_outline_top_right
  • icon icon-triangle_right
  • icon icon-triangle_top
  • icon icon-triangle_top_left
  • icon icon-triangle_top_right
  • icon icon-triangle_with_line_bottom
  • icon icon-triangle_with_line_left
  • icon icon-triangle_with_line_right
  • icon icon-triangle_with_line_top
  • icon icon-twitter
  • icon icon-undo
  • icon icon-unknown_document
  • icon icon-unlink
  • icon icon-unlock
  • icon icon-update
  • icon icon-upload
  • icon icon-usb_flash_drive
  • icon icon-user
  • icon icon-user-add
  • icon icon-valid
  • icon icon-verified_document
  • icon icon-video
  • icon icon-video_camera
  • icon icon-views
  • icon icon-warning
  • icon icon-web_cam
  • icon icon-wifi
  • icon icon-wifi-cancel
  • icon icon-wifi-confidential
  • icon icon-wifi-unknown
  • icon icon-windows
  • icon icon-wrench
  • icon icon-zip
  • icon icon-zoom_in
  • icon icon-zoom_out

Flag icons

  • icon icon-flag-de
  • icon icon-flag-il
  • icon icon-flag-ni
  • icon icon-flag-no
  • icon icon-flag-gy
  • icon icon-flag-br
  • icon icon-flag-py
  • icon icon-flag-ar
  • icon icon-flag-bg
  • icon icon-flag-ht
  • icon icon-flag-cr
  • icon icon-flag-fi
  • icon icon-flag-pr
  • icon icon-flag-nl
  • icon icon-flag-pf
  • icon icon-flag-tw
  • icon icon-flag-za
  • icon icon-flag-mq
  • icon icon-flag-bo
  • icon icon-flag-cl
  • icon icon-flag-co
  • icon icon-flag-fr
  • icon icon-flag-tr
  • icon icon-flag-ua
  • icon icon-flag-cn
  • icon icon-flag-cz
  • icon icon-flag-in
  • icon icon-flag-mx
  • icon icon-flag-id
  • icon icon-flag-sv
  • icon icon-flag-gr
  • icon icon-flag-dk
  • icon icon-flag-it
  • icon icon-flag-ee
  • icon icon-flag-jp
  • icon icon-flag-ch
  • icon icon-flag-pa
  • icon icon-flag-pe
  • icon icon-flag-pt
  • icon icon-flag-ro
  • icon icon-flag-ru
  • icon icon-flag-rs
  • icon icon-flag-sg
  • icon icon-flag-sk
  • icon icon-flag-kr
  • icon icon-flag-es
  • icon icon-flag-th
  • icon icon-flag-uy
  • icon icon-flag-ve
  • icon icon-flag-at
  • icon icon-flag-bz
  • icon icon-flag-nl
  • icon icon-flag-kz
  • icon icon-flag-gt
  • icon icon-flag-my
  • icon icon-flag-pl
  • icon icon-flag-hu
  • icon icon-flag-se
  • icon icon-flag-hn
  • icon icon-flag-lt
  • icon icon-flag-si
  • icon icon-flag-be
  • icon icon-flag-ph
  • icon icon-flag-us
  • icon icon-flag-au
  • icon icon-flag-gb
  • icon icon-flag-ca
  • icon icon-flag-hr
  • icon icon-flag-lv
  • icon icon-flag-lc
  • icon icon-flag-dm
  • icon icon-flag-nz
  • icon icon-flag-xm
  • icon icon-flag-xc
  • icon icon-flag-xl
  • icon icon-flag-xa
  • icon icon-flag-ie
  • icon icon-flag-vn
  • icon icon-flag-lk
  • icon icon-flag-mm
  • icon icon-flag-kh
  • icon icon-flag-bn
  • icon icon-flag-bd
  • icon icon-flag-by
  • icon icon-flag-ge
  • icon icon-flag-ap
  • icon icon-flag-do
<i class="icon icon-flag-us" aria-hidden="true"></i>

Don't mix with other components

Icon classes cannot be directly combined with other components. They should not be used along with other classes on the same element. Instead, add a nested <span> and apply the icon classes to the <span>.

Only for use on empty elements

Icon classes should only be used on elements that contain no text content and have no child elements.

Accessible icons

Modern versions of assistive technologies will announce CSS generated content, as well as specific Unicode characters. To avoid unintended and confusing output in screen readers (particularly when icons are used purely for decoration), we hide them with the aria-hidden="true" attribute.

If you're using an icon to convey meaning (rather than only as a decorative element), ensure that this meaning is also conveyed to assistive technologies – for instance, include additional content, visually hidden with the .sr-only class.

If you're creating controls with no other text (such as a <button>> that only contains an icon), you should always provide alternative content to identify the purpose of the control, so that it will make sense to users of assistive technologies. In this case, you could add an aria-label attribute on the control itself.

<i class="icon icon-search" aria-hidden="true"></i>

Examples

Use icons in buttons, button groups for a toolbar, navigation, or prepended form inputs.

<button type="button" class="btn btn-default" aria-label="Rewind">
   <i class="icon icon-triangle_left" aria-hidden="true"></i>
</button>

<button type="button" class="btn btn-default btn-lg">
  <i class="icon icon-message_bubble" aria-hidden="true"></i> Chat
</button>

An icon used in an alert to convey that it's an error message should use additional .sr-only text to convey this hint to users of assistive technologies.

<div class="alert alert-danger" role="alert">
  <i class="icon icon-error" aria-hidden="true"></i>
  <span class="sr-only">Error:</span>
  Enter a valid email address
</div>

List group

List groups are a flexible and powerful component for displaying not only simple lists of elements, but complex ones with custom content.

Basic example

The most basic list group is simply an unordered list with list items, and the proper classes. Build upon it with the options that follow, or your own CSS as needed.

  • Cras justo odio
  • Dapibus ac facilisis in
  • Morbi leo risus
  • Porta ac consectetur ac
  • Vestibulum at eros
<ul class="list-group">
  <li class="list-group-item">Cras justo odio</li>
  <li class="list-group-item">Dapibus ac facilisis in</li>
  <li class="list-group-item">Morbi leo risus</li>
  <li class="list-group-item">Porta ac consectetur ac</li>
  <li class="list-group-item">Vestibulum at eros</li>
</ul>

Badges

Add the badges component to any list group item and it will automatically be positioned on the right.

  • 14 Cras justo odio
  • 2 Dapibus ac facilisis in
  • 1 Morbi leo risus
<ul class="list-group">
  <li class="list-group-item">
    <span class="badge">14</span>
    Cras justo odio
  </li>
</ul>

Linked items

Linkify list group items by using anchor tags instead of list items (that also means a parent <div> instead of an <ul>). No need for individual parents around each element.

<div class="list-group">
  <a href="#" class="list-group-item active">
    Cras justo odio
  </a>
  <a href="#" class="list-group-item">Dapibus ac facilisis in</a>
  <a href="#" class="list-group-item">Morbi leo risus</a>
  <a href="#" class="list-group-item">Porta ac consectetur ac</a>
  <a href="#" class="list-group-item">Vestibulum at eros</a>
</div>

Button items

List group items may be buttons instead of list items (that also means a parent <div> instead of an <ul>). No need for individual parents around each element. Don't use the standard .btn classes here.

<div class="list-group">
  <button type="button" class="list-group-item">Cras justo odio</button>
  <button type="button" class="list-group-item">Dapibus ac facilisis in</button>
  <button type="button" class="list-group-item">Morbi leo risus</button>
  <button type="button" class="list-group-item">Porta ac consectetur ac</button>
  <button type="button" class="list-group-item">Vestibulum at eros</button>
</div>

Disabled items

Add .disabled to a .list-group-item to gray it out to appear disabled.

<div class="list-group">
  <a href="#" class="list-group-item disabled">
    Cras justo odio
  </a>
  <a href="#" class="list-group-item">Dapibus ac facilisis in</a>
  <a href="#" class="list-group-item">Morbi leo risus</a>
  <a href="#" class="list-group-item">Porta ac consectetur ac</a>
  <a href="#" class="list-group-item">Vestibulum at eros</a>
</div>

Contextual classes

Use contextual classes to style list items, default or linked. Also includes .active state.

  • Dapibus ac facilisis in
  • Cras sit amet nibh libero
  • Porta ac consectetur ac
  • Vestibulum at eros
<ul class="list-group">
  <li class="list-group-item list-group-item-success">Dapibus ac facilisis in</li>
  <li class="list-group-item list-group-item-info">Cras sit amet nibh libero</li>
  <li class="list-group-item list-group-item-warning">Porta ac consectetur ac</li>
  <li class="list-group-item list-group-item-danger">Vestibulum at eros</li>
</ul>
<div class="list-group">
  <a href="#" class="list-group-item list-group-item-success">Dapibus ac facilisis in</a>
  <a href="#" class="list-group-item list-group-item-info">Cras sit amet nibh libero</a>
  <a href="#" class="list-group-item list-group-item-warning">Porta ac consectetur ac</a>
  <a href="#" class="list-group-item list-group-item-danger">Vestibulum at eros</a>
</div>

Custom content

Add nearly any HTML within, even for linked list groups like the one below.

<div class="list-group">
  <a href="#" class="list-group-item active">
    <h4 class="list-group-item-heading">List group item heading</h4>
    <p class="list-group-item-text">...</p>
  </a>
</div>

Loading images

We are currently using multiple loading images across lexmark.com. Going forward we should use a standard loading image and its variations below.

These gifs were generated from https://icons8.com/preloaders/en/rectangular/squared-fading-blocks/ and use the following colors for each image:

  • Default: (foreground: #006446; background: #3af23a)
  • Light: (foreground: #000000; background: #ffffff)
  • Dark: (foreground: #ffffff; background: #5a5a64)

Examples

Make sure to add the .hidden class, so it only shows when triggered. If you wish to center the loading image, you must also include .center-block.

Square loading image

<div class="loading-img-square hidden"></div>

Loading image sizes

Loading images are available in 3 sizes: small (24px), default (36px), and large (48px). To use the small size, add .loading-img-sm to the div. To use the large size, add .loading-img-lg to the div.

<div class="loading-img-square loading-img-lg center-block hidden"></div> 
<div class="loading-img-square center-block hidden"></div>
<div class="loading-img-square loading-img-sm center-block hidden"></div>

Loading image colors

The loading image will switch out automatically based on the background color it's displayed against.

Loading modal

If you need messaging for a whole page, use this loading modal.

Loading
<div class="wait-background-overlay hidden">
  <div class="wait-window">
    <div class="wait-image-section">
      <div class="loading-img-square loading-img-lg center-block"></div>
    </div>
    <div class="wait-title-section">Loading</div>
    <div class="wait-message-section"></div>
  </div>
</div>

Media object

Abstract object styles for building various types of components (like blog comments, Tweets, etc) that feature a left- or right-aligned image alongside textual content.

Default media

The default media displays a media object (images, video, audio) to the left or right of a content block.

Media heading

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

Media heading

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

Nested media heading

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

Media heading

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

Media heading

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.
<div class="media">
  <div class="media-left">
    <a href="#">
      <img class="media-object" src="..." alt="...">
    </a>
  </div>
  <div class="media-body">
    <h4 class="media-heading">Media heading</h4>
    ...
  </div>
</div>

The classes .pull-left and .pull-right also exist and were previously used as part of the media component, but are deprecated for that use as of v3.3.0. They are approximately equivalent to .media-left and .media-right, except that .media-right should be placed after the .media-body in the html.

Media alignment

The images or other media can be aligned top, middle, or bottom. The default is top aligned.

Top aligned media

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

Donec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

Middle aligned media

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

Donec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

Bottom aligned media

Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis. Fusce condimentum nunc ac nisi vulputate fringilla. Donec lacinia congue felis in faucibus.

Donec sed odio dui. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

<div class="media">
  <div class="media-left media-middle">
    <a href="#">
      <img class="media-object" src="..." alt="...">
    </a>
  </div>
  <div class="media-body">
    <h4 class="media-heading">Middle aligned media</h4>
    ...
  </div>
</div>

Media list

With a bit of extra markup, you can use media inside list (useful for comment threads or articles lists).

  • Media heading

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

    Nested media heading

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

    Nested media heading

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.

    Nested media heading

    Cras sit amet nibh libero, in gravida nulla. Nulla vel metus scelerisque ante sollicitudin commodo. Cras purus odio, vestibulum in vulputate at, tempus viverra turpis.
<ul class="media-list">
  <li class="media">
    <div class="media-left">
      <a href="#">
        <img class="media-object" src="..." alt="...">
      </a>
    </div>
    <div class="media-body">
      <h4 class="media-heading">Media heading</h4>
      ...
    </div>
  </li>
</ul>

Navbar

Navbars are responsive meta components that serve as navigation headers for your application or site. They begin collapsed (and are toggleable) in mobile views and become horizontal as the available viewport width increases.

Justified navbar nav links are currently not supported.

Overflowing content

Since Bootstrap doesn't know how much space the content in your navbar needs, you might run into issues with content wrapping into a second row. To resolve this, you can:

  1. Reduce the amount or width of navbar items.
  2. Hide certain navbar items at certain screen sizes using responsive utility classes.
  3. Change the point at which your navbar switches between collapsed and horizontal mode. Customize the @grid-float-breakpoint variable or add your own media query.

Requires JavaScript plugin

If JavaScript is disabled and the viewport is narrow enough that the navbar collapses, it will be impossible to expand the navbar and view the content within the .navbar-collapse.

The responsive navbar requires the collapse plugin to be included in your version of Bootstrap.

Changing the collapsed mobile navbar breakpoint

The navbar collapses into its vertical mobile view when the viewport is narrower than @grid-float-breakpoint, and expands into its horizontal non-mobile view when the viewport is at least @grid-float-breakpoint in width. Adjust this variable in the Less source to control when the navbar collapses/expands. The default value is 768px (the smallest "small" or "tablet" screen).

Make navbars accessible

Be sure to use a <nav> element or, if using a more generic element such as a <div>, add a role="navigation" to every navbar to explicitly identify it as a landmark region for users of assistive technologies.

<nav class="navbar navbar-default">
  <div class="container-fluid">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
      <a class="navbar-brand" href="#">Brand</a>
    </div>

    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      <ul class="nav navbar-nav">
        <li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">Separated link</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">One more separated link</a></li>
          </ul>
        </li>
      </ul>
      <form class="navbar-form navbar-left">
        <div class="form-group">
          <input type="text" class="form-control" placeholder="Search">
        </div>
        <button type="submit" class="btn btn-default">Submit</button>
      </form>
      <ul class="nav navbar-nav navbar-right">
        <li><a href="#">Link</a></li>
        <li class="dropdown">
          <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
          <ul class="dropdown-menu">
            <li><a href="#">Action</a></li>
            <li><a href="#">Another action</a></li>
            <li><a href="#">Something else here</a></li>
            <li role="separator" class="divider"></li>
            <li><a href="#">Separated link</a></li>
          </ul>
        </li>
      </ul>
    </div><!-- /.navbar-collapse -->
  </div><!-- /.container-fluid -->
</nav>

Replace the navbar brand with your own image by swapping the text for an <img>. Since the .navbar-brand has its own padding and height, you may need to override some CSS depending on your image.

<nav class="navbar navbar-default">
  <div class="container-fluid">
    <div class="navbar-header">
      <a class="navbar-brand" href="#">
        <img alt="Brand" src="...">
      </a>
    </div>
  </div>
</nav>

Place form content within .navbar-form for proper vertical alignment and collapsed behavior in narrow viewports. Use the alignment options to decide where it resides within the navbar content.

As a heads up, .navbar-form shares much of its code with .form-inline via mixin. Some form controls, like input groups, may require fixed widths to be show up properly within a navbar.

<form class="navbar-form navbar-left" role="search">
  <div class="form-group">
    <input type="text" class="form-control" placeholder="Search">
  </div>
  <button type="submit" class="btn btn-default">Submit</button>
</form>

Mobile device caveats

There are some caveats regarding using form controls within fixed elements on mobile devices. See our browser support docs for details.

Always add labels

Screen readers will have trouble with your forms if you don't include a label for every input. For these inline forms, you can hide the labels using the .sr-only class. There are further alternative methods of providing a label for assistive technologies, such as the aria-label, aria-labelledby or title attribute. If none of these is present, screen readers may resort to using the placeholder attribute, if present, but note that use of placeholder as a replacement for other labelling methods is not advised.

Add the .navbar-btn class to <button> elements not residing in a <form> to vertically center them in the navbar.

<button type="button" class="btn btn-default navbar-btn">Sign in</button>

Context-specific usage

Like the standard button classes, .navbar-btn can be used on <a> and <input> elements. However, neither .navbar-btn nor the standard button classes should be used on <a> elements within .navbar-nav.

Wrap strings of text in an element with .navbar-text, usually on a <p> tag for proper leading and color.

<p class="navbar-text">Signed in as Mark Otto</p>

For folks using standard links that are not within the regular navbar navigation component, use the .navbar-link class to add the proper colors for the default and inverse navbar options.

<p class="navbar-text navbar-right">Signed in as <a href="#" class="navbar-link">Mark Otto</a></p>

Align nav links, forms, buttons, or text, using the .navbar-left or .navbar-right utility classes. Both classes will add a CSS float in the specified direction. For example, to align nav links, put them in a separate <ul> with the respective utility class applied.

These classes are mixin-ed versions of .pull-left and .pull-right, but they're scoped to media queries for easier handling of navbar components across device sizes.

Right aligning multiple components

Navbars currently have a limitation with multiple .navbar-right classes. To properly space content, we use negative margin on the last .navbar-right element. When there are multiple elements using that class, these margins don't work as intended.

We'll revisit this when we can rewrite that component in v4.

Add .navbar-fixed-top and include a .container or .container-fluid to center and pad navbar content.

<nav class="navbar navbar-default navbar-fixed-top">
  <div class="container">
    ...
  </div>
</nav>

Body padding required

The fixed navbar will overlay your other content, unless you add padding to the top of the <body>. Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.

body { padding-top: 70px; }

Make sure to include this after the core Bootstrap CSS.

Add .navbar-fixed-bottom and include a .container or .container-fluid to center and pad navbar content.

<nav class="navbar navbar-default navbar-fixed-bottom">
  <div class="container">
    ...
  </div>
</nav>

Body padding required

The fixed navbar will overlay your other content, unless you add padding to the bottom of the <body>. Try out your own values or use our snippet below. Tip: By default, the navbar is 50px high.

body { padding-bottom: 70px; }

Make sure to include this after the core Bootstrap CSS.

Create a full-width navbar that scrolls away with the page by adding .navbar-static-top and include a .container or .container-fluid to center and pad navbar content.

Unlike the .navbar-fixed-* classes, you do not need to change any padding on the body.

<nav class="navbar navbar-default navbar-static-top">
  <div class="container">
    ...
  </div>
</nav>

Modify the look of the navbar by adding .navbar-inverse.

<nav class="navbar navbar-inverse">
  ...
</nav>

Navs

Navs available in Bootstrap have shared markup, starting with the base .nav class, as well as shared states. Swap modifier classes to switch between each style.

To make tabs more accessible, the aria labels are important. Reference https://www.w3.org/TR/wai-aria-practices/examples/tabs/tabs-1/tabs.html for more information and best practice examples.

Using navs for tab panels requires JavaScript tabs plugin

For tabs with tabbable areas, you must use the tabs JavaScript plugin. The markup will also require additional role and ARIA attributes – see the plugin's example markup for further details.

Make navs used as navigation accessible

If you are using navs to provide a navigation bar, be sure to add a role="navigation" to the most logical parent container of the <ul>, or wrap a <nav> element around the whole navigation. Do not add the role to the <ul> itself, as this would prevent it from being announced as an actual list by assistive technologies.

Note the .nav-tabs class requires the .nav base class.

<ul class="nav nav-tabs" role="tablist" aria-label="how to use tabs">
  <li role="presentation" class="active">
    <a href="#tabsexample1" role="tab" aria-selected="true" aria-controls="open example 1 tab" data-toggle="tab">Example 1</a>
  </li>
  <li role="presentation">
    <a href="#tabsexample2" role="tab" aria-selected="false" aria-controls="open example 2 tab" data-toggle="tab">Example 2</a>
  </li>
  <li role="presentation">
    <a href="#tabsexample3" role="tab" aria-selected="false" aria-controls="open example 3 tab" data-toggle="tab">Example 3</a>
  </li>
  <li role="presentation">
    <a href="http://www.bobrosslipsum.com/" role="tab" aria-selected="false" aria-controls="external link: open Wikipedia page" target="_blank" rel="noopener">External link <i class="icon icon-send_to" aria-hidden="true"></i></a>
  </li>
</ul>
<div class="tab-content">
  <div id="tabsexample1" class="tab-pane active" role="tabpanel" aria-selected="true" aria-labelledby="example 1 content">
    ...
  </div>
  <div id="tabsexample2" class="tab-pane" role="tabpanel" aria-labelledby="example 2 content">
    ...
  </div>
  <div id="tabsexample3" class="tab-pane" role="tabpanel" aria-labelledby="example 3 content">
    ...
  </div>
</div>

Take that same HTML structure, but use .nav-pills instead. This example also shows how to change the markup when tabs are treated as navigational links.

<div role="navigation" aria-label="how to use navigation pills">
  <ul class="nav nav-pills">
    ...
  </ul>
</div>

Pills can also be vertically stacked. Just add .nav-stacked.

<div role="navigation" aria-label="how to use vertically stacked navigation pills">
  <ul class="nav nav-pills nav-stacked">
    ...
  </ul>
</div>

Justified navbar nav links are currently not supported.

Safari and responsive justified navs

As of v9.1.2, Safari exhibits a bug in which resizing your browser horizontally causes rendering errors in the justified nav that are cleared upon refreshing. This bug is also shown in the justified nav example.

For any nav component (tabs or pills), add .disabled for gray links and no hover effects.

Link functionality not impacted

This class will only change the <a>'s appearance, not its functionality. Use custom JavaScript to disable links here.

<ul class="nav nav-pills">
  ...
  <li role="presentation" class="disabled"><a href="#">Disabled link</a></li>
  ...
</ul>

Add dropdown menus with a little extra HTML and the dropdowns JavaScript plugin.

Tabs with dropdowns

<ul class="nav nav-tabs" role="tablist" aria-label="how to use tabs with dropdowns">
  ...
  <li role="presentation" class="dropdown">
    <a href="#moredevicestabdrop" role="button" class="dropdown-toggle" aria-haspopup="true" aria-selected="false" aria-expanded="false" data-toggle="dropdown" aria-label="expand similar device options">Locations <span class="caret"></span>
    </a>
    <ul class="dropdown-menu">
      ...
    </ul>
  </li>
  ...
</ul>

Pills with dropdowns

<div role="navigation" aria-label="how to use pills with dropdowns">
  <ul class="nav nav-pills">
    ...
    <li role="presentation" class="dropdown">
      <a href="#locationspilldrop" role="button" class="dropdown-toggle" aria-haspopup="true" aria-expanded="false" aria-expanded="false" data-toggle="dropdown" aria-label="expand location options">Locations <span class="caret"></span>
      </a>
      <ul class="dropdown-menu">
        ...
      </ul>
    </li>
    ...
  </ul>
</div>

Rail navigations

These navs can be placed in either the right or left rail and have a base class of .nav with an extra class of .nav-rail for necessary styling. The nav should also always be wrapped in a nav html element.

LXK Affixed Navigation

The affixed nav uses the bootstrap scrollspy and affix plugins to work properly. It needs the class .nav-affix applied to the nav element for ready-made javascript and it is then styled with the class .nav-rail class on the ul element.

For more uses of the affix plugin, see the affix javascript page

<nav>
  <ul class="nav nav-rail">
    <li class="nav-title"><span>Project Name</span>
      <div class="railnav-trigger">Navigate Section</div>
      <ul class="nav">
        <li class="active"><a href="#">Current active page</a>
          <ul class="nav">
            <li><a href="#">Child Link</a></li>
            <li><a href="#">Child Link</a></li>
            <li><a href="#">Child Link</a></li>
            <li><a href="#">Child Link</a></li>
          </ul>
        </li>
        <li><a href="#">Sibling</a></li>
        <li><a href="#">Sibling</a></li>
        <li><a href="#">Sibling</a></li>
        <li><a href="#">Sibling</a></li>
        <li><a href="#">Sibling</a></li>
      </ul>
    </li>
  </ul>
</nav>
  $("#navigation-frame").html('...');
  $("#affix-nav-example").addClass("nav-affix");
  $(document).lxk_navigation();

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 as most other components (with additional styles).

<div class="page-header">
  <h1>Example page header <small>Subtext for header</small></h1>
</div>

Page header without bottom rule

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 as most other components (with additional styles).

Example page header Subtext for header

<div class="page-header">
  <h1>Example page header <small>Subtext for header</small></h1>
</div>

Pagination

Design patterns for pagination should be chosen based on the specific environment it will be used. We do not have a one-pagination-fits-all. Refer to the sections below to help you determine the best pagination pattern to use for your specific UX/UI needs. Our design was inspired by Rdio. It features large blocks to accommodate ideal click/touch areas.

Default pagination

This pagination is our most used design pattern. Best for search results where only a small number of returned results are expected (5 pages or less). If this pattern is used with more than 5 pages, the placeholder ellipsis would be used to keep the pagination from breaking on small mobile phones, which is not the most ideal experience. In that case, it would be better to use the page number input design.

<nav aria-label="Search results navigation">
  <ul class="pagination">
    <li>
      <a href="#" aria-label="Previous">
        <span aria-hidden="true">&lsaquo;</span>
      </a>
    </li>
    <li><a href="#">1</a></li>
    <li><a href="#">2</a></li>
    <li><a href="#">3</a></li>
    <li><a href="#">4</a></li>
    <li><a href="#">5</a></li>
    <li>
      <a href="#" aria-label="Next">
        <span aria-hidden="true">&rsaquo;</span>
      </a>
    </li>
  </ul>
</nav>

Labelling the pagination component

The pagination component should be wrapped in a <nav> element to identify it as a navigation section to screen readers and other assistive technologies. In addition, as a page is likely to have more than one such navigation section already (such as the primary navigation in the header, or a sidebar navigation), it is advisable to provide a descriptive aria-label for the <nav> which reflects its purpose. For example, if the pagination component is used to navigate between a set of search results, an appropriate label could be aria-label="Search results navigation".

Disabled and active states

Links are customizable for different circumstances. Use .disabled for unclickable links and .active to indicate the current page.

<nav aria-label="...">
  <ul class="pagination">
    <li class="disabled"><a href="#" aria-label="Previous"><span aria-hidden="true">&lsaquo;</span></a></li>
    <li class="active"><a href="#">1 <span class="sr-only">(current)</span></a></li>
    ...
  </ul>
</nav>

You can optionally swap out active or disabled anchors for <span>, or omit the anchor in the case of the previous/next arrows, to remove click functionality while retaining intended styles.

<nav aria-label="...">
  <ul class="pagination">
    <li class="disabled">
      <i class="icon icon-caret_left_thin" aria-hidden="true"></i>
    </li>
    <li class="active">
      <span>1 <span class="sr-only">(current)</span></span>
    </li>
    ...
  </ul>
</nav>

Sizing

Add .pagination-lg or .pagination-sm for additional sizes.

<nav aria-label="..."><ul class="pagination pagination-lg">...</ul></nav>
<nav aria-label="..."><ul class="pagination">...</ul></nav>
<nav aria-label="..."><ul class="pagination pagination-sm">...</ul></nav>

Page number input

This pagination is based on our default design, but is tailored for searches that will return a large number of results (6 pages or more). The input box allows users to manually type in a specific page number. Users can advance to the first or last page, in addition to one page prior or next. Links can also use the general .disabled utility class from the default pagination design. The additional sizing options are not availabe for this layout, because it has built-in resizing for touch devices. Add .pull-right to the ul tag to right-align pagination.

<nav aria-label="Search results navigation">
  <ul class="pagination page-number-input">
    <li class="disabled">
      <a href="#" aria-label="First">
        <span aria-hidden="true">&laquo;</span>
      </a>
    </li>
    <li class="disabled">
      <a href="#" aria-label="Previous">
        <span aria-hidden="true">&lsaquo;</span>
      </a>
    </li>
    <li>
      <form class="form-inline no-labels">
        <div class="form-group">
          <label class="sr-only" for="currentPageNumber">Current Page</label>
          <div class="input-group">
            <input type="number" class="form-control" name="currentPageNumber" id="currentPageNumber" value="1">
            <div class="input-group-addon">of 845</div>
          </div>
        </div>
      </form>
    </li>
    <li>
      <a href="#" aria-label="Next">
        <span aria-hidden="true">&rsaquo;</span>
      </a>
    </li>
    <li>
      <a href="#" aria-label="Last">
        <span aria-hidden="true">&raquo;</span>
      </a>
    </li>
  </ul>
</nav>

Advance by page (Pager)

This design pattern is best used for navigating from page to page within a blog, magazine, PDF, etc. Links can also use the general .disabled utility class from the default pagination design.

Translation considerations

When using pagination designs containing words in addition to icons, translations need to be considered, especially when used outside of english-speaking locales.

Default example

By default, the buttons are centered within the div. The words and arrow styles are interchangable.

<nav aria-label="...">
  <ul class="pager">
      <li><a href="#"><span aria-hidden="true">&lsaquo;</span> Previous</a></li>
      <li><a href="#">Next <span aria-hidden="true">&rsaquo;</span></a></li>
    </ul>
</nav>

Button Alignment

Alternatively, you can align each button to their respective sides. Add class="previous" and class="next" to the li tags.

<nav aria-label="...">
  <ul class="pager">
    <li class="previous"><a href="#"><span aria-hidden="true">&larr;</span> Older</a></li>
    <li class="next"><a href="#">Newer <span aria-hidden="true">&rarr;</span></a></li>
  </ul>
</nav>

Panels

While not always necessary, sometimes you need to put your DOM in a box. For those situations, try the panel component.

Basic example

By default, all the .panel does is apply some basic border and padding to contain some content.

Basic panel example
<div class="panel panel-default">
  <div class="panel-body">
    Basic panel example
  </div>
</div>

Panel with heading

Easily add a heading container to your panel with .panel-heading. You may also include any <h1>-<h6> with a .panel-title class to add a pre-styled heading. However, the font sizes of <h1>-<h6> are overridden by .panel-heading.

For proper link coloring, be sure to place links in headings within .panel-title.

Panel heading without title
Panel content

Panel title

Panel content
<div class="panel panel-default">
  <div class="panel-heading">Panel heading without title</div>
  <div class="panel-body">
    Panel content
  </div>
</div>

<div class="panel panel-default">
  <div class="panel-heading">
    <h3 class="panel-title">Panel title</h3>
  </div>
  <div class="panel-body">
    Panel content
  </div>
</div>

Wrap buttons or secondary text in .panel-footer. Note that panel footers do not inherit colors and borders when using contextual variations as they are not meant to be in the foreground.

Panel content
<div class="panel panel-default">
  <div class="panel-body">
    Panel content
  </div>
  <div class="panel-footer">Panel footer</div>
</div>

Contextual alternatives

Like other components, easily make a panel more meaningful to a particular context by adding any of the contextual state classes.

Panel title

Panel content

Panel title

Panel content

Panel title

Panel content

Panel title

Panel content

Panel title

Panel content
<div class="panel panel-primary">...</div>
<div class="panel panel-success">...</div>
<div class="panel panel-info">...</div>
<div class="panel panel-warning">...</div>
<div class="panel panel-danger">...</div>

With tables

Add any non-bordered .table within a panel for a seamless design. If there is a .panel-body, we add an extra border to the top of the table for separation.

Panel heading

Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit.

# First Name Last Name Username
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
<div class="panel panel-default">
  <!-- Default panel contents -->
  <div class="panel-heading">Panel heading</div>
  <div class="panel-body">
    <p>...</p>
  </div>

  <!-- Table -->
  <table class="table">
    ...
  </table>
</div>

If there is no panel body, the component moves from panel header to table without interruption.

Panel heading
# First Name Last Name Username
1 Mark Otto @mdo
2 Jacob Thornton @fat
3 Larry the Bird @twitter
<div class="panel panel-default">
  <!-- Default panel contents -->
  <div class="panel-heading">Panel heading</div>

  <!-- Table -->
  <table class="table">
    ...
  </table>
</div>

With list groups

Easily include full-width list groups within any panel.

Panel heading

Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit.

  • Cras justo odio
  • Dapibus ac facilisis in
  • Morbi leo risus
  • Porta ac consectetur ac
  • Vestibulum at eros
<div class="panel panel-default">
  <!-- Default panel contents -->
  <div class="panel-heading">Panel heading</div>
  <div class="panel-body">
    <p>...</p>
  </div>

  <!-- List group -->
  <ul class="list-group">
    <li class="list-group-item">Cras justo odio</li>
    <li class="list-group-item">Dapibus ac facilisis in</li>
    <li class="list-group-item">Morbi leo risus</li>
    <li class="list-group-item">Porta ac consectetur ac</li>
    <li class="list-group-item">Vestibulum at eros</li>
  </ul>
</div>

Progress bars

Provide up-to-date feedback on the progress of a workflow or action with simple yet flexible progress bars.

Cross-browser compatibility

Progress bars use CSS3 transitions and animations to achieve some of their effects. These features are not supported in Internet Explorer 9 and below or older versions of Firefox. Opera 12 does not support animations.

Content Security Policy (CSP) compatibility

If your website has a Content Security Policy (CSP) which doesn't allow style-src 'unsafe-inline', then you won't be able to use inline style attributes to set progress bar widths as shown in our examples below. Alternative methods for setting the widths that are compatible with strict CSPs include using a little custom JavaScript (that sets element.style.width) or using custom CSS classes.

Basic example

Default progress bar.

60% Complete
<div class="progress">
  <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
    <span class="sr-only">60% Complete</span>
  </div>
</div>

With label

Remove the <span> with .sr-only class from within the progress bar to show a visible percentage.

60%
<div class="progress">
  <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
    60%
  </div>
</div>

To ensure that the label text remains legible even for low percentages, consider adding a min-width to the progress bar.

0%
2%
<div class="progress">
  <div class="progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em;">
    0%
  </div>
</div>
<div class="progress">
  <div class="progress-bar" role="progressbar" aria-valuenow="2" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em; width: 2%;">
    2%
  </div>
</div>

Contextual alternatives

Progress bars use some of the same button and alert classes for consistent styles.

40% Complete (success)
70% Complete (important)
20% Complete (information)
60% Complete (warning)
<div class="progress">
  <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
    <span class="sr-only">40% Complete (success)</span>
  </div>
</div>
<div class="progress">
  <div class="progress-bar progress-bar-important" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 70%">
    <span class="sr-only">70% Complete (important)</span>
  </div>
</div>
<div class="progress">
  <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
    <span class="sr-only">20% Complete (information)</span>
  </div>
</div>
<div class="progress">
  <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
    <span class="sr-only">60% Complete (warning)</span>
  </div>
</div>

Striped

Uses a gradient to create a striped effect. Not available in IE9 and below.

40% Complete (success)
70% Complete (important)
20% Complete (information)
60% Complete (warning)
<div class="progress">
  <div class="progress-bar progress-bar-success progress-bar-striped" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
    <span class="sr-only">40% Complete (success)</span>
  </div>
</div>
<div class="progress">
  <div class="progress-bar progress-bar-important progress-bar-striped" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 70%">
    <span class="sr-only">70% Complete (important)</span>
  </div>
</div>
<div class="progress">
  <div class="progress-bar progress-bar-info progress-bar-striped" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
    <span class="sr-only">20% Complete (information</span>
  </div>
</div>
<div class="progress">
  <div class="progress-bar progress-bar-warning progress-bar-striped" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
    <span class="sr-only">60% Complete (warning)</span>
  </div>
</div>

Animated

Add .active to .progress-bar-striped to animate the stripes right to left. Not available in IE9 and below.

45% Complete
<div class="progress">
  <div class="progress-bar progress-bar-striped active" role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
    <span class="sr-only">45% Complete</span>
  </div>
</div>

Stacked

Place multiple bars into the same .progress to stack them.

35% Complete (success)
20% Complete (warning)
10% Complete (danger)
<div class="progress">
  <div class="progress-bar progress-bar-success" style="width: 35%">
    <span class="sr-only">35% Complete (success)</span>
  </div>
  <div class="progress-bar progress-bar-warning progress-bar-striped" style="width: 20%">
    <span class="sr-only">20% Complete (warning)</span>
  </div>
  <div class="progress-bar progress-bar-danger" style="width: 10%">
    <span class="sr-only">10% Complete (danger)</span>
  </div>
</div>

Responsive embed

Allow browsers to determine video or slideshow dimensions based on the width of their containing block by creating an intrinsic ratio that will properly scale on any device.

Rules are directly applied to <iframe>, <embed>, <video>, and <object> elements; optionally use an explicit descendant class .embed-responsive-item when you want to match the styling for other attributes.

Pro-Tip! You don't need to include frameborder="0" in your <iframe>s as we override that for you.

<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
  <iframe class="embed-responsive-item" src="..."></iframe>
</div>

Social Share Icons

Alignment

Add any of the alignment helper classes to the <div> container with the .social class to align the area to center (.text-left) or right(.text-right). Left alignment is the default; therefore, no additional class is needed.

Left Aligned - Default

<div class="social">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Centered

<div class="social text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Right Aligned

<div class="social text-right">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Style Variations

Default - Stacked

<div class="social text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Default - Inline

<div class="social social-inline text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Dark - Stacked

<div class="social social-dark text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Dark - Inline

<div class="social social-inline social-dark text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Light - Stacked

<div class="social social-light text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Light - Inline

<div class="social social-inline social-light text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

In Background Color - Stacked

<div class="social text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

In Background Color - Inline

<div class="social social-inline text-center">
  <div class="social-heading">Share this page</div>
  <div class="social-btns">
    <a href="#facebook" target="_blank" rel="noopener" title="Share this page on Facebook" class="social-btn social-btn-facebook"></a>
    <a href="#twitter" target="_blank" rel="noopener" title="Share this page on Twitter" class="social-btn social-btn-twitter"></a>
    <a href="#linkedin" target="_blank" rel="noopener" title="Share this page on LinkedIn" class="social-btn social-btn-linkedin"></a>
  </div>
</div>

Tags

Tag your categories with a bit of style.

The following examples provide a way to style tags for use in displaying keywords or terms within search filters and other related uses. Interaction functionality must be developed separately.

Usage notes

The styles tag, tag-active, tag-not-active, and tag-close-btn may be used on either <a> or <div> tags.

Examples with Active and Inactive States

Active
Inactive
<div class="tag-group">
  <div class="tag tag-active">Active</div>  
  <div class="tag tag-not-active">Inactive</div>
</div>
<div class="tag-group">
  <a class="tag tag-active">Active</a>  
  <a class="tag tag-not-active">Inactive</a>
</div>

Examples with Close Icon

Category 1
Category 2
Category 3
<div class="tag-group">
  <div class="tag tag-close-btn tag-active">Category 1</div>
  <div class="tag tag-close-btn tag-active">Category 2</div>
  <div class="tag tag-close-btn tag-active">Category 3</div>
</div>
<div class="tag-group">
  <a class="tag tag-close-btn tag-active">Category 1</a>
  <a class="tag tag-close-btn tag-active">Category 2</a>
  <a class="tag tag-close-btn tag-active">Category 3</a>
</div>

Examples with Add Icon

Category 1
Category 2
Category 3
<div class="tag-group">
  <div class="tag tag-add-btn tag-active">Category 1</div>
  <div class="tag tag-add-btn tag-active">Category 2</div>
  <div class="tag tag-add-btn tag-active">Category 3</div>
</div>
<div class="tag-group">
  <a class="tag tag-add-btn tag-active">Category 1</a>
  <a class="tag tag-add-btn tag-active">Category 2</a>
  <a class="tag tag-add-btn tag-active">Category 3</a>
</div>

Examples with Checkmark Icon

Category 1
Category 2
Category 3
<div class="tag-group">
  <div class="tag tag-checkmark-btn tag-active">Category 1</div>
  <div class="tag tag-checkmark-btn tag-active">Category 2</div>
  <div class="tag tag-checkmark-btn tag-active">Category 3</div>
</div>
<div class="tag-group">
  <a class="tag tag-checkmark-btn tag-active">Category 1</a>
  <a class="tag tag-checkmark-btn tag-active">Category 2</a>
  <a class="tag tag-checkmark-btn tag-active">Category 3</a>
</div>

Examples of a Long List

Category 1
Category 2
Category 3
Category 4
Category 5
Category 6
Category 7
Category 8
Category 9
Category 10
Category 11
Category 12
Category 13
Category 14
Category 15
Category 16
Category 17
Category 18
Category 19
Category 20
Category 21
Category 22
Category 23
Category 24
<div class="tag-group">
  <div class="tag">Category 1</div>
  <div class="tag">Category 2</div>
  <div class="tag">Category 3</div>
  <div class="tag">Category 4</div>
  <div class="tag">Category 5</div>
  <div class="tag">Category 6</div>
  <div class="tag">Category 7</div>
  <div class="tag">Category 8</div>
  <div class="tag">Category 9</div>
  <div class="tag">Category 10</div>
  <div class="tag">Category 11</div>
  <div class="tag">Category 12</div>
  <div class="tag">Category 13</div>
  <div class="tag">Category 14</div>
  <div class="tag">Category 15</div>
  <div class="tag">Category 16</div>
  <div class="tag">Category 17</div>
  <div class="tag">Category 18</div>
  <div class="tag">Category 19</div>
  <div class="tag">Category 20</div>
  <div class="tag">Category 21</div>
  <div class="tag">Category 22</div>
  <div class="tag">Category 23</div>
  <div class="tag">Category 24</div>
</div>

Examples with Colored Border and Icon

The examples shown below use the following additional tag color classes based upon our site's color classes.

tag-border-b1
tag-border-b2
tag-border-b3
tag-border-b4
tag-border-b5
tag-border-b6
tag-border-b7
tag-border-b8
tag-border-b9
tag-border-b10
tag-border-n1
tag-border-n2
tag-border-n3
tag-border-n4
tag-border-n5
tag-border-n6
tag-border-black
tag-border-white
<div class="tag-group">
  <div class="tag tag-add-btn tag-active tag-border-b1">tag-border-b1</div>
  <div class="tag tag-close-btn tag-active tag-border-b2">tag-border-b2</div>
  <div class="tag tag-checkmark-btn tag-active tag-border-b3">tag-border-b3</div>
  <div class="tag tag-add-btn tag-active tag-border-b4">tag-border-b4</div>
  <div class="tag tag-close-btn tag-active tag-border-b5">tag-border-b5</div>
  <div class="tag tag-checkmark-btn tag-active tag-border-b6">tag-border-b6</div>
  <div class="tag tag-add-btn tag-active tag-border-b7">tag-border-b7</div>
  <div class="tag tag-close-btn tag-active tag-border-b8">tag-border-b8</div>
  <div class="tag tag-checkmark-btn tag-active tag-border-b9">tag-border-b9</div>
  <div class="tag tag-add-btn tag-active tag-border-b10">tag-border-b10</div>
</div>
<div class="tag-group">
  <div class="tag tag-close-btn tag-active tag-border-n1">tag-border-n1</div>
  <div class="tag tag-checkmark-btn tag-active tag-border-n2">tag-border-n2</div>
  <div class="tag tag-add-btn tag-active tag-border-n3">tag-border-n3</div>
  <div class="tag tag-close-btn tag-active tag-border-n4">tag-border-n4</div>
  <div class="tag tag-checkmark-btn tag-active tag-border-n5">tag-border-n5</div>
  <div class="tag tag-add-btn tag-active tag-border-n6">tag-border-n6</div>
</div>
<div class="tag-group">
  <div class="tag tag-close-btn tag-active tag-border-black">tag-border-black</div>
  <div class="tag tag-checkmark-btn tag-active tag-border-white">tag-border-white</div>
</div>

Thumbnails

Extend Bootstrap's grid system with the thumbnail component to easily display grids of images, videos, text, and more.

If you're looking for Pinterest-like presentation of thumbnails of varying heights and/or widths, you'll need to use a third-party plugin such as Masonry, Isotope, or Salvattore.

Default example

By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.

<div class="row">
  <div class="col-xs-6 col-md-3">
    <a href="#" class="thumbnail">
      <img src="..." alt="...">
    </a>
  </div>
  ...
</div>

Custom content

With a bit of extra markup, it's possible to add any kind of HTML content like headings, paragraphs, or buttons into thumbnails.

<div class="row">
  <div class="col-sm-6 col-md-4">
    <div class="thumbnail">
      <img src="..." alt="...">
      <div class="caption">
        <h3>Thumbnail label</h3>
        <p>...</p>
        <p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
      </div>
    </div>
  </div>
</div>

Thumbnail component as link

Instead of using a <div> for the thumbnail wrapper element, instead use an <a> tag with the class of thumbnail. Then add a <p> tag with a class of call-to-action to meet usability requirements.

<a href="..." class="thumbnail">
  <img src="..." alt="...">
  <div class="caption">
    <h3>Thumbnail label</h3>
    <p>...</p>
    <p class="call-to-action">Call to Action</p>
  </div>
</a>

Thumbnail component with text only

Apply a class of thumbnail-text to the thumbnail outer <div> and wrap the thumbnail content with a <div> and color class of .bg-** to style a text-only thumbnail properly.

<a href="..." class="thumbnail thumbnail-text">
  <div class="bg-n2">
    <div class="caption">
      <h3>Thumbnail label</h3>
      <p>...</p>
    </div>
  </div>
</a>

Horizontal Thumbnails

For horizontally placed thumbnails with custom content use the grid system to properly place image and text for all screen sizes. The <img> will need a class of img-responsive applied to it for proper sizing.

Generic placeholder thumbnail

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.

Button

<div class="thumbnail">
  <div class="row">
    <div class="col-sm-4">
      <img class="img-responsive" src="..." alt="...">
    </div>
    <div class="col-sm-8">
      <div class="caption">
        ...
      </div>
    </div>
  </div> <!-- /.row -->
</div>  <!-- /.thumbnail -->

Wells

Default well

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>

Optional classes

Size classes

Control padding and rounded corners with two optional modifier classes.

Look, I'm in a large well!
<div class="well well-lg">...</div>
Look, I'm in a small well!
<div class="well well-sm">...</div>

Shadow class

Control shadow one optional modifier classes.

Look, I'm a shadowless well!
<div class="well no-shadow">...</div>

Border Classes

Control borders two optional modifier classes.

Look, I'm a top bordered well!
<div class="well no-shadow border-top">...</div>
Look, I'm a bottom bordered well!
<div class="well no-shadow border-bottom">...</div>

Example class chaining

Look, I'm a top and bottom bordered well with a different color!
<div class="well no-shadow border-bottom border-top border--b6">...</div>