You are on page 1of 38

Bootstrap (./index.

html)

Base CSS
Fundamental HTML elements styled and enhanced with
extensible classes.

(http://themeforest.net/item/jupiter-multipurpose-responsive-theme/5177775?
ref=carbonads)
Jupiter is the fastest and lightest WordPress theme ever. Unparalleled performance.
(http://themeforest.net/item/jupiter-multipurpose-responsive-theme/5177775?ref=carbonads)

ads via Carbon (http://carbonads.com)

Heads up! These docs are for v2.3.2, which is no longer officially supported. Check out
the latest version of Bootstrap! (http://getbootstrap.com/css/)

Typography

Code

Tables

Forms

Buttons

Images

Icons by Glyphicons

Typography
Headings
All HTML headings, <h1> through <h6> are available.

Example

h1. Heading 1
h2. Heading 2
h3. Heading 3
h4. Heading 4
h5. Heading 5

h6. Heading 6

Body copy
Bootstrap's global default font-size is 14px, with a line-height of 20px. This is applied to the
<body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of half their
line-height (10px by default).

Example

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et
magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies
vehicula.

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus,
nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus
auctor fringilla.

Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi
porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula,
eget lacinia odio sem nec elit.

<p>...</p>

Lead body copy


Make a paragraph stand out by adding .lead .
Example

Vivamus sagittis lacus vel augue laoreet rutrum faucibus


dolor auctor. Duis mollis, est non commodo luctus.

<p class="lead">...</p>

Built with Less


The typographic scale is based on two LESS variables in variables.less: @baseFontSize and
@baseLineHeight . The first is the base font-size used throughout and the second is the base line-
height. We use those variables and some simple math to create the margins, paddings, and line-
heights of all our type and more. Customize them and Bootstrap adapts.

Emphasis
Make use of HTML's default emphasis tags with lightweight styles.

<small>

For de-emphasizing inline or blocks of text, use the small tag.

Example

This line of text is meant to be treated as fine print.

<p>
<small>This line of text is meant to be treated as fine print.</small>
</p>

Bold
For emphasizing a snippet of text with a heavier font-weight.

Example

The following snippet of text is rendered as bold text.

<strong>rendered as bold text</strong>


Italics
For emphasizing a snippet of text with italics.

Example

The following snippet of text is rendered as italicized text.

<em>rendered as italicized text</em>

Heads up! Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases
without conveying additional importance while <i> is mostly for voice, technical terms, etc.

Alignment classes
Easily realign text to components with text alignment classes.

Example

Left aligned text.

Center aligned text.

Right aligned text.

1. <p class="text-left">Left aligned text.</p>


2. <p class="text-center">Center aligned text.</p>
3. <p class="text-right">Right aligned text.</p>

Emphasis classes
Convey meaning through color with a handful of emphasis utility classes.

Example

Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.

Etiam porta sem malesuada magna mollis euismod.

Donec ullamcorper nulla non metus auctor fringilla.

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis.

Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
1. <p class="muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nib
h.</p>
2. <p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p>
3. <p class="text-error">Donec ullamcorper nulla non metus auctor fringilla.</p
>
4. <p class="text-info">Aenean eu leo quam. Pellentesque ornare sem lacinia qua
m venenatis.</p>
5. <p class="text-success">Duis mollis, est non commodo luctus, nisi erat portt
itor ligula.</p>

Abbreviations
Stylized implementation of HTML's <abbr> element for abbreviations and acronyms to show the
expanded version on hover. Abbreviations with a title attribute have a light dotted bottom
border and a help cursor on hover, providing additional context on hover.

<abbr>

For expanded text on long hover of an abbreviation, include the title attribute.

Example

An abbreviation of the word attribute is attr (attribute).

<abbr title="attribute">attr</abbr>

<abbr class="initialism">

Add .initialism to an abbreviation for a slightly smaller font-size.

Example

HTML (HYPERTEXT MARKUP LANGUAGE) is the best thing since sliced bread.

<abbr title="HyperText Markup Language" class="initialism">HTML</abbr>


Addresses
Present contact information for the nearest ancestor or the entire body of work.

<address>

Preserve formatting by ending all lines with <br> .

Example

Twitter, Inc.
795 Folsom Ave, Suite 600
San Francisco, CA 94107
P: (Phone) (123) 456-7890

Full Name
first.last@example.com (mailto:#)

1. <address>
2. <strong>Twitter, Inc.</strong><br>
3. 795 Folsom Ave, Suite 600<br>
4. San Francisco, CA 94107<br>
5. <abbr title="Phone">P:</abbr> (123) 456-7890
6. </address>
7.
8. <address>
9. <strong>Full Name</strong><br>
10. <a href="mailto:#">first.last@example.com</a>
11. </address>

Blockquotes
For quoting blocks of content from another source within your document.

Default blockquote
Wrap <blockquote> around any HTML (HyperText Markup Language) as the quote. For straight
quotes we recommend a <p> .

Example

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer


posuere erat a ante.
1. <blockquote>
2. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuer
e erat a ante.</p>
3. </blockquote>

Blockquote options
Style and content changes for simple variations on a standard blockquote.

Naming a source
Add <small> tag for identifying the source. Wrap the name of the source work in <cite> .

Example

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer


posuere erat a ante.
— Someone famous in Source Title

1. <blockquote>
2. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuer
e erat a ante.</p>
3. <small>Someone famous <cite title="Source Title">Source Title</cite></smal
l>
4. </blockquote>

Alternate displays
Use .pull-right for a floated, right-aligned blockquote.

Example

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer


posuere erat a ante.
Someone famous in Source Title —

1. <blockquote class="pull-right">
2. ...
3. </blockquote>
Lists
Unordered
A list of items in which the order does not explicitly matter.

Example

• Lorem ipsum dolor sit amet


• Consectetur adipiscing elit
• Integer molestie lorem at massa
• Facilisis in pretium nisl aliquet
• Nulla volutpat aliquam velit
◦ Phasellus iaculis neque
◦ Purus sodales ultricies
◦ Vestibulum laoreet porttitor sem
◦ Ac tristique libero volutpat at
• Faucibus porta lacus fringilla vel
• Aenean sit amet erat nunc
• Eget porttitor lorem

1. <ul>
2. <li>...</li>
3. </ul>

Ordered
A list of items in which the order does explicitly matter.

Example

1. Lorem ipsum dolor sit amet


2. Consectetur adipiscing elit
3. Integer molestie lorem at massa
4. Facilisis in pretium nisl aliquet
5. Nulla volutpat aliquam velit
6. Faucibus porta lacus fringilla vel
7. Aenean sit amet erat nunc
8. Eget porttitor lorem

1. <ol>
2. <li>...</li>
3. </ol>
Unstyled
Remove the default list-style and left padding on list items (immediate children only).

Example

Lorem ipsum dolor sit amet


Consectetur adipiscing elit
Integer molestie lorem at massa
Facilisis in pretium nisl aliquet
Nulla volutpat aliquam velit
◦ Phasellus iaculis neque
◦ Purus sodales ultricies
◦ Vestibulum laoreet porttitor sem
◦ Ac tristique libero volutpat at
Faucibus porta lacus fringilla vel
Aenean sit amet erat nunc
Eget porttitor lorem

1. <ul class="unstyled">
2. <li>...</li>
3. </ul>

Inline
Place all list items on a single line with inline-block and some light padding.

Example

Lorem ipsum Phasellus iaculis Nulla volutpat

1. <ul class="inline">
2. <li>...</li>
3. </ul>

Description
A list of terms with their associated descriptions.

Example

Description lists
A description list is perfect for defining terms.
Euismod
Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
Donec id elit non mi porta gravida at eget metus.
Malesuada porta
Etiam porta sem malesuada magna mollis euismod.

1. <dl>
2. <dt>...</dt>
3. <dd>...</dd>
4. </dl>

Horizontal description
Make terms and descriptions in <dl> line up side-by-side.

Example

Description lists
A description list is perfect for defining terms.
Euismod
Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
Donec id elit non mi porta gravida at eget metus.
Malesuada porta
Etiam porta sem malesuada magna mollis euismod.
Felis euismod semper eget lacinia
Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum
massa justo sit amet risus.

1. <dl class="dl-horizontal">
2. <dt>...</dt>
3. <dd>...</dd>
4. </dl>

Heads up! Horizontal description lists will truncate terms that are too long to fit in the left column
fix text-overflow . In narrower viewports, they will change to the default stacked layout.

Code

Inline
Wrap inline snippets of code with <code> .
Example

For example, <section> should be wrapped as inline.

1. For example, <code>&lt;section&gt;</code> should be wrapped as inline.

Basic block
Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper
rendering.

Example

<p>Sample text here...</p>

1. <pre>
2. &lt;p&gt;Sample text here...&lt;/p&gt;
3. </pre>

Heads up! Be sure to keep code within <pre> tags as close to the left as possible; it will render
all tabs.

You may optionally add the .pre-scrollable class which will set a max-height of 350px and
provide a y-axis scrollbar.

Tables

Default styles
For basic styling—light padding and only horizontal dividers—add the base class .table to any
<table> .

Example

# First Name Last Name Username

1 Mark Otto @mdo

2 Jacob Thornton @fat

3 Larry the Bird @twitter


1. <table class="table">
2. …
3. </table>

Optional classes
Add any of the following classes to the .table base class.

.table-striped

Adds zebra-striping to any table row within the <tbody> via the :nth-child CSS selector (not
available in IE7-8).

Example

# First Name Last Name Username

1 Mark Otto @mdo

2 Jacob Thornton @fat

3 Larry the Bird @twitter

1. <table class="table table-striped">


2. …
3. </table>

.table-bordered

Add borders and rounded corners to the table.

Example

# First Name Last Name Username

1 Mark Otto @mdo

Mark Otto @getbootstrap

2 Jacob Thornton @fat


# First Name Last Name Username

3 Larry the Bird @twitter

1. <table class="table table-bordered">


2. …
3. </table>

.table-hover

Enable a hover state on table rows within a <tbody> .

Example

# First Name Last Name Username

1 Mark Otto @mdo

2 Jacob Thornton @fat

3 Larry the Bird @twitter

1. <table class="table table-hover">


2. …
3. </table>

.table-condensed

Makes tables more compact by cutting cell padding in half.

Example

# First Name Last Name Username

1 Mark Otto @mdo

2 Jacob Thornton @fat

3 Larry the Bird @twitter

1. <table class="table table-condensed">


2. …
3. </table>
Optional row classes
Use contextual classes to color table rows.

Class Description

.success Indicates a successful or positive action.

.error Indicates a dangerous or potentially negative action.

.warning Indicates a warning that might need attention.

.info Used as an alternative to the default styles.

Example

# Product Payment Taken Status

1 TB - Monthly 01/04/2012 Approved

2 TB - Monthly 02/04/2012 Declined

3 TB - Monthly 03/04/2012 Pending

4 TB - Monthly 04/04/2012 Call in to confirm

1. ...
2. <tr class="success">
3. <td>1</td>
4. <td>TB - Monthly</td>
5. <td>01/04/2012</td>
6. <td>Approved</td>
7. </tr>
8. ...

Supported table markup


List of supported table HTML elements and how they should be used.

Tag Description

<table> Wrapping element for displaying data in a tabular format


Tag Description

<thead> Container element for table header rows ( <tr> ) to label table columns

<tbody> Container element for table rows ( <tr> ) in the body of the table

<tr> Container element for a set of table cells ( <td> or <th> ) that appears on a
single row

<td> Default table cell

<th> Special table cell for column (or row, depending on scope and placement) labels

<caption> Description or summary of what the table holds, especially useful for screen
readers

1. <table>
2. <caption>...</caption>
3. <thead>
4. <tr>
5. <th>...</th>
6. <th>...</th>
7. </tr>
8. </thead>
9. <tbody>
10. <tr>
11. <td>...</td>
12. <td>...</td>
13. </tr>
14. </tbody>
15. </table>

Forms

Default styles
Individual form controls receive styling, but without any required base class on the <form> or
large changes in markup. Results in stacked, left-aligned labels on top of form controls.
Example

Legend

Label name

Type something…

Example block-level help text here.

Check me out

Submit

1. <form>
2. <fieldset>
3. <legend>Legend</legend>
4. <label>Label name</label>
5. <input type="text" placeholder="Type something…">
6. <span class="help-block">Example block-level help text here.</span>
7. <label class="checkbox">
8. <input type="checkbox"> Check me out
9. </label>
10. <button type="submit" class="btn">Submit</button>
11. </fieldset>
12. </form>

Optional layouts
Included with Bootstrap are three optional form layouts for common use cases.

Search form
Add .form-search to the form and .search-query to the <input> for an extra-rounded text
input.

Example

Search
1. <form class="form-search">
2. <input type="text" class="input-medium search-query">
3. <button type="submit" class="btn">Search</button>
4. </form>

Inline form
Add .form-inline for left-aligned labels and inline-block controls for a compact layout.

Example

Email Password Remember me Sign in

1. <form class="form-inline">
2. <input type="text" class="input-small" placeholder="Email">
3. <input type="password" class="input-small" placeholder="Password">
4. <label class="checkbox">
5. <input type="checkbox"> Remember me
6. </label>
7. <button type="submit" class="btn">Sign in</button>
8. </form>

Horizontal form
Right align labels and float them to the left to make them appear on the same line as controls.
Requires the most markup changes from a default form:

• Add .form-horizontal to the form


• Wrap labels and controls in .control-group
• Add .control-label to the label
• Wrap any associated controls in .controls for proper alignment

Example

Email Email

Password Password

Remember me

Sign in
1. <form class="form-horizontal">
2. <div class="control-group">
3. <label class="control-label" for="inputEmail">Email</label>
4. <div class="controls">
5. <input type="text" id="inputEmail" placeholder="Email">
6. </div>
7. </div>
8. <div class="control-group">
9. <label class="control-label" for="inputPassword">Password</label>
10. <div class="controls">
11. <input type="password" id="inputPassword" placeholder="Password">
12. </div>
13. </div>
14. <div class="control-group">
15. <div class="controls">
16. <label class="checkbox">
17. <input type="checkbox"> Remember me
18. </label>
19. <button type="submit" class="btn">Sign in</button>
20. </div>
21. </div>
22. </form>

Supported form controls


Examples of standard form controls supported in an example form layout.

Inputs
Most common form control, text-based input fields. Includes support for all HTML5 types: text,
password, datetime, datetime-local, date, month, time, week, number, email, url, search, tel, and
color.

Requires the use of a specified type at all times.

Example

Text input

1. <input type="text" placeholder="Text input">


Textarea
Form control which supports multiple lines of text. Change rows attribute as necessary.

Example

1. <textarea rows="3"></textarea>

Checkboxes and radios


Checkboxes are for selecting one or several options in a list while radios are for selecting one
option from many.

Default (stacked)

Example

Option one is this and that—be sure to include why it's great

Option one is this and that—be sure to include why it's great
Option two can be something else and selecting it will deselect option one

1. <label class="checkbox">
2. <input type="checkbox" value="">
3. Option one is this and that—be sure to include why it's great
4. </label>
5.
6. <label class="radio">
7. <input type="radio" name="optionsRadios" id="optionsRadios1" value="option
1" checked>
8. Option one is this and that—be sure to include why it's great
9. </label>
10. <label class="radio">
11. <input type="radio" name="optionsRadios" id="optionsRadios2" value="option
2">
12. Option two can be something else and selecting it will deselect option one
13. </label>

Inline checkboxes
Add the .inline class to a series of checkboxes or radios for controls appear on the same line.
Example

1 2 3

1. <label class="checkbox inline">


2. <input type="checkbox" id="inlineCheckbox1" value="option1"> 1
3. </label>
4. <label class="checkbox inline">
5. <input type="checkbox" id="inlineCheckbox2" value="option2"> 2
6. </label>
7. <label class="checkbox inline">
8. <input type="checkbox" id="inlineCheckbox3" value="option3"> 3
9. </label>

Selects
Use the default option or specify a multiple="multiple" to show multiple options at once.

Example

1 

1 

2
3
4 

1. <select>
2. <option>1</option>
3. <option>2</option>
4. <option>3</option>
5. <option>4</option>
6. <option>5</option>
7. </select>
8.
9. <select multiple="multiple">
10. <option>1</option>
11. <option>2</option>
12. <option>3</option>
13. <option>4</option>
14. <option>5</option>
15. </select>
Extending form controls
Adding on top of existing browser controls, Bootstrap includes other useful form components.

Prepended and appended inputs


Add text or buttons before or after any text-based input. Do note that select elements are not
supported here.

Default options
Wrap an .add-on and an input with one of two classes to prepend or append text to an input.

Example

@ Username

.00

1. <div class="input-prepend">
2. <span class="add-on">@</span>
3. <input class="span2" id="prependedInput" type="text" placeholder="Usernam
e">
4. </div>
5. <div class="input-append">
6. <input class="span2" id="appendedInput" type="text">
7. <span class="add-on">.00</span>
8. </div>

Combined
Use both classes and two instances of .add-on to prepend and append an input.

Example

$ .00

1. <div class="input-prepend input-append">


2. <span class="add-on">$</span>
3. <input class="span2" id="appendedPrependedInput" type="text">
4. <span class="add-on">.00</span>
5. </div>

Buttons instead of text


Instead of a <span> with text, use a .btn to attach a button (or two) to an input.
Example

Go!

1. <div class="input-append">
2. <input class="span2" id="appendedInputButton" type="text">
3. <button class="btn" type="button">Go!</button>
4. </div>

Example

Search Options

1. <div class="input-append">
2. <input class="span2" id="appendedInputButtons" type="text">
3. <button class="btn" type="button">Search</button>
4. <button class="btn" type="button">Options</button>
5. </div>

Button dropdowns

Example

Action

1. <div class="input-append">
2. <input class="span2" id="appendedDropdownButton" type="text">
3. <div class="btn-group">
4. <button class="btn dropdown-toggle" data-toggle="dropdown">
5. Action
6. <span class="caret"></span>
7. </button>
8. <ul class="dropdown-menu">
9. ...
10. </ul>
11. </div>
12. </div>

Example

Action
1. <div class="input-prepend">
2. <div class="btn-group">
3. <button class="btn dropdown-toggle" data-toggle="dropdown">
4. Action
5. <span class="caret"></span>
6. </button>
7. <ul class="dropdown-menu">
8. ...
9. </ul>
10. </div>
11. <input class="span2" id="prependedDropdownButton" type="text">
12. </div>

Example

Action Action

1. <div class="input-prepend input-append">


2. <div class="btn-group">
3. <button class="btn dropdown-toggle" data-toggle="dropdown">
4. Action
5. <span class="caret"></span>
6. </button>
7. <ul class="dropdown-menu">
8. ...
9. </ul>
10. </div>
11. <input class="span2" id="appendedPrependedDropdownButton" type="text">
12. <div class="btn-group">
13. <button class="btn dropdown-toggle" data-toggle="dropdown">
14. Action
15. <span class="caret"></span>
16. </button>
17. <ul class="dropdown-menu">
18. ...
19. </ul>
20. </div>
21. </div>

Segmented dropdown groups

Example

Action Action
1. <form>
2. <div class="input-prepend">
3. <div class="btn-group">...</div>
4. <input type="text">
5. </div>
6. <div class="input-append">
7. <input type="text">
8. <div class="btn-group">...</div>
9. </div>
10. </form>

Search form

Example

Search Search

1. <form class="form-search">
2. <div class="input-append">
3. <input type="text" class="span2 search-query">
4. <button type="submit" class="btn">Search</button>
5. </div>
6. <div class="input-prepend">
7. <button type="submit" class="btn">Search</button>
8. <input type="text" class="span2 search-query">
9. </div>
10. </form>

Control sizing
Use relative sizing classes like .input-large or match your inputs to the grid column sizes
using .span* classes.

Block level inputs


Make any <input> or <textarea> element behave like a block level element.

Example

.input-block-level

1. <input class="input-block-level" type="text" placeholder=".input-block-leve


l">
Relative sizing

Example

.input-mini

.input-small

.input-medium

.input-large

.input-xlarge

.input-xxlarge

1. <input class="input-mini" type="text" placeholder=".input-mini">


2. <input class="input-small" type="text" placeholder=".input-small">
3. <input class="input-medium" type="text" placeholder=".input-medium">
4. <input class="input-large" type="text" placeholder=".input-large">
5. <input class="input-xlarge" type="text" placeholder=".input-xlarge">
6. <input class="input-xxlarge" type="text" placeholder=".input-xxlarge">

Heads up! In future versions, we'll be altering the use of these relative input classes to match our
button sizes. For example, .input-large will increase the padding and font-size of an input.

Grid sizing
Use .span1 to .span12 for inputs that match the same sizes of the grid columns.

Example

.span1

.span2

.span3

1 

1 

1 
1. <input class="span1" type="text" placeholder=".span1">
2. <input class="span2" type="text" placeholder=".span2">
3. <input class="span3" type="text" placeholder=".span3">
4. <select class="span1">
5. ...
6. </select>
7. <select class="span2">
8. ...
9. </select>
10. <select class="span3">
11. ...
12. </select>

For multiple grid inputs per line, use the .controls-row modifier class for proper spacing. It
floats the inputs to collapse white-space, sets the proper margins, and clears the float.

Example

.span5

.span4

.span1

.span3

.span2

.span2

.span3

.span1

.span4

1. <div class="controls">
2. <input class="span5" type="text" placeholder=".span5">
3. </div>
4. <div class="controls controls-row">
5. <input class="span4" type="text" placeholder=".span4">
6. <input class="span1" type="text" placeholder=".span1">
7. </div>
8. ...
Uneditable inputs
Present data in a form that's not editable without using actual form markup.

Example

Some value here

1. <span class="input-xlarge uneditable-input">Some value here</span>

Form actions
End a form with a group of actions (buttons). When placed within a .form-actions , the buttons
will automatically indent to line up with the form controls.

Example

Save changes Cancel

1. <div class="form-actions">
2. <button type="submit" class="btn btn-primary">Save changes</button>
3. <button type="button" class="btn">Cancel</button>
4. </div>

Help text
Inline and block level support for help text that appears around form controls.

Inline help

Example

Inline help text

1. <input type="text"><span class="help-inline">Inline help text</span>


Block help

Example

A longer block of help text that breaks onto a new line and may extend beyond one line.

1. <input type="text"><span class="help-block">A longer block of help text tha


t breaks onto a new line and may extend beyond one line.</span>

Form control states


Provide feedback to users or visitors with basic feedback states on form controls and labels.

Input focus
We remove the default outline styles on some form controls and apply a box-shadow in its
place for :focus .

Example

This is focused...

1. <input class="input-xlarge" id="focusedInput" type="text" value="This is foc


used...">

Invalid inputs
Style inputs via default browser functionality with :invalid . Specify a type , add the required
attribute if the field is not optional, and (if applicable) specify a pattern .

This is not available in versions of Internet Explorer 7-9 due to lack of support for CSS pseudo
selectors.

Example

test@example.com

1. <input class="span3" type="email" required>


Disabled inputs
Add the disabled attribute on an input to prevent user input and trigger a slightly different look.

Example

Disabled input here…

1. <input class="input-xlarge" id="disabledInput" type="text" placeholder="Disa


bled input here..." disabled>

Validation states
Bootstrap includes validation styles for error, warning, info, and success messages. To use, add
the appropriate class to the surrounding .control-group .

Example

Input with warning


Something may have gone wrong

Input with error Please correct the error

Input with info Username is taken

Input with success Woohoo!


1. <div class="control-group warning">
2. <label class="control-label" for="inputWarning">Input with warning</label>
3. <div class="controls">
4. <input type="text" id="inputWarning">
5. <span class="help-inline">Something may have gone wrong</span>
6. </div>
7. </div>
8.
9. <div class="control-group error">
10. <label class="control-label" for="inputError">Input with error</label>
11. <div class="controls">
12. <input type="text" id="inputError">
13. <span class="help-inline">Please correct the error</span>
14. </div>
15. </div>
16.
17. <div class="control-group info">
18. <label class="control-label" for="inputInfo">Input with info</label>
19. <div class="controls">
20. <input type="text" id="inputInfo">
21. <span class="help-inline">Username is already taken</span>
22. </div>
23. </div>
24.
25. <div class="control-group success">
26. <label class="control-label" for="inputSuccess">Input with success</label>
27. <div class="controls">
28. <input type="text" id="inputSuccess">
29. <span class="help-inline">Woohoo!</span>
30. </div>
31. </div>

Buttons

Default buttons
Button styles can be applied to anything with the .btn class applied. However, typically you'll
want to apply these to only <a> and <button> elements for the best rendering.

Button class="" Description


Button class="" Description

Default btn Standard gray button with gradient

Primary btn btn-primary Provides extra visual weight and identifies the primary
action in a set of buttons

Info btn btn-info Used as an alternative to the default styles

Success btn btn-success Indicates a successful or positive action

Warning btn btn-warning Indicates caution should be taken with this action

Danger btn btn-danger Indicates a dangerous or potentially negative action

Inverse btn btn-inverse Alternate dark gray button, not tied to a semantic action or
use

Link btn btn-link Deemphasize a button by making it look like a link while
maintaining button behavior

Cross browser compatibility


IE9 doesn't crop background gradients on rounded corners, so we remove it. Related, IE9
jankifies disabled button elements, rendering text gray with a nasty text-shadow that we cannot
fix.

Button sizes
Fancy larger or smaller buttons? Add .btn-large , .btn-small , or .btn-mini for additional
sizes.

Example

Large button Large button

Default button Default button

Small button Small button

Mini button Mini button


1. <p>
2. <button class="btn btn-large btn-primary" type="button">Large button</butt
on>
3. <button class="btn btn-large" type="button">Large button</button>
4. </p>
5. <p>
6. <button class="btn btn-primary" type="button">Default button</button>
7. <button class="btn" type="button">Default button</button>
8. </p>
9. <p>
10. <button class="btn btn-small btn-primary" type="button">Small button</butt
on>
11. <button class="btn btn-small" type="button">Small button</button>
12. </p>
13. <p>
14. <button class="btn btn-mini btn-primary" type="button">Mini button</button
>
15. <button class="btn btn-mini" type="button">Mini button</button>
16. </p>

Create block level buttons—those that span the full width of a parent— by adding .btn-block .

Example

Block level button

Block level button

1. <button class="btn btn-large btn-block btn-primary" type="button">Block leve


l button</button>
2. <button class="btn btn-large btn-block" type="button">Block level button</bu
tton>

Disabled state
Make buttons look unclickable by fading them back 50%.

Anchor element
Add the .disabled class to <a> buttons.
Example

Primary link Link

1. <a href="#" class="btn btn-large btn-primary disabled">Primary link</a>


2. <a href="#" class="btn btn-large disabled">Link</a>

Heads up! We use .disabled as a utility class here, similar to the common .active class, so no
prefix is required. Also, this class is only for aesthetic; you must use custom JavaScript to disable
links here.

Button element
Add the disabled attribute to <button> buttons.

Example

Primary button Button

1. <button type="button" class="btn btn-large btn-primary disabled" disabled="d


isabled">Primary button</button>
2. <button type="button" class="btn btn-large" disabled>Button</button>

One class, multiple tags


Use the .btn class on an <a> , <button> , or <input> element.

Example

Link () Button Input Submit

1. <a class="btn" href="">Link</a>


2. <button class="btn" type="submit">Button</button>
3. <input class="btn" type="button" value="Input">
4. <input class="btn" type="submit" value="Submit">

As a best practice, try to match the element for your context to ensure matching cross-browser
rendering. If you have an input , use an <input type="submit"> for your button.

Images
Add classes to an <img> element to easily style images in any project.

Example

1. <img src="..." class="img-rounded">


2. <img src="..." class="img-circle">
3. <img src="..." class="img-polaroid">

Heads up! .img-rounded and .img-circle do not work in IE7-8 due to lack of border-radius
support.

Icons by Glyphicons (http://glyphicons.com)

Icon glyphs
140 icons in sprite form, available in dark gray (default) and white, provided by Glyphicons
(http://glyphicons.com).

icon-glass icon-music icon-search icon-envelope

icon-heart icon-star icon-star-empty icon-user

icon-film icon-th-large icon-th icon-th-list

icon-ok icon-remove icon-zoom-in icon-zoom-out

icon-off icon-signal icon-cog icon-trash

icon-home icon-file icon-time icon-road

icon-download-alt icon-download icon-upload icon-inbox

icon-play-circle icon-repeat icon-refresh icon-list-alt

icon-lock icon-flag icon-headphones icon-volume-off


icon-volume-down icon-volume-up icon-qrcode icon-barcode

icon-tag icon-tags icon-book icon-bookmark

icon-print icon-camera icon-font icon-bold

icon-italic icon-text-height icon-text-width icon-align-left

icon-align-center icon-align-right icon-align-justify icon-list

icon-indent-left icon-indent-right icon-facetime-video icon-picture

icon-pencil icon-map-marker icon-adjust icon-tint

icon-edit icon-share icon-check icon-move

icon-step-backward icon-fast-backward icon-backward icon-play

icon-pause icon-stop icon-forward icon-fast-forward

icon-step-forward icon-eject icon-chevron-left icon-chevron-right

icon-plus-sign icon-minus-sign icon-remove-sign icon-ok-sign

icon-question-sign icon-info-sign icon-screenshot icon-remove-circle

icon-ok-circle icon-ban-circle icon-arrow-left icon-arrow-right

icon-arrow-up icon-arrow-down icon-share-alt icon-resize-full

icon-resize-small icon-plus icon-minus icon-asterisk

icon-exclamation- icon-gift icon-leaf icon-fire


sign icon-eye-open icon-eye-close icon-warning-sign

icon-plane icon-calendar icon-random icon-comment

icon-magnet icon-chevron-up icon-chevron-down icon-retweet

icon-shopping-cart icon-folder-close icon-folder-open icon-resize-vertical

icon-resize-horizontal icon-hdd icon-bullhorn icon-bell

icon-certificate icon-thumbs-up icon-thumbs-down icon-hand-right

icon-hand-left icon-hand-up icon-hand-down icon-circle-arrow-


right

icon-circle-arrow-left icon-circle-arrow-up icon-circle-arrow- icon-globe


down icon-wrench

icon-tasks icon-filter icon-briefcase icon-fullscreen

Glyphicons attribution
Glyphicons (http://glyphicons.com/) Halflings are normally not available for free, but an
arrangement between Bootstrap and the Glyphicons creators have made this possible at no cost
to you as developers. As a thank you, we ask you to include an optional link back to Glyphicons
(http://glyphicons.com/) whenever practical.
How to use
All icons require an <i> tag with a unique class, prefixed with icon- . To use, place the following
code just about anywhere:

1. <i class="icon-search"></i>

There are also styles available for inverted (white) icons, made ready with one extra class. We will
specifically enforce this class on hover and active states for nav and dropdown links.

1. <i class="icon-search icon-white"></i>

Heads up! When using beside strings of text, as in buttons or nav links, be sure to leave a space
after the <i> tag for proper spacing.

Icon examples
Use them in buttons, button groups for a toolbar, navigation, or prepended form inputs.

Buttons
Button group in a button toolbar

Example

1. <div class="btn-toolbar">
2. <div class="btn-group">
3. <a class="btn" href="#"><i class="icon-align-left"></i></a>
4. <a class="btn" href="#"><i class="icon-align-center"></i></a>
5. <a class="btn" href="#"><i class="icon-align-right"></i></a>
6. <a class="btn" href="#"><i class="icon-align-justify"></i></a>
7. </div>
8. </div>
Dropdown in a button group

Example

User

1. <div class="btn-group">
2. <a class="btn btn-primary" href="#"><i class="icon-user icon-white"></i> U
ser</a>
3. <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href
="#"><span class="caret"></span></a>
4. <ul class="dropdown-menu">
5. <li><a href="#"><i class="icon-pencil"></i> Edit</a></li>
6. <li><a href="#"><i class="icon-trash"></i> Delete</a></li>
7. <li><a href="#"><i class="icon-ban-circle"></i> Ban</a></li>
8. <li class="divider"></li>
9. <li><a href="#"><i class="i"></i> Make admin</a></li>
10. </ul>
11. </div>

Button sizes

Example

Star Star Star

1. <a class="btn btn-large" href="#"><i class="icon-star"></i> Star</a>


2. <a class="btn btn-small" href="#"><i class="icon-star"></i> Star</a>
3. <a class="btn btn-mini" href="#"><i class="icon-star"></i> Star</a>

Navigation

Example

Home
Library
Applications
Misc
1. <ul class="nav nav-list">
2. <li class="active"><a href="#"><i class="icon-home icon-white"></i> Home</
a></li>
3. <li><a href="#"><i class="icon-book"></i> Library</a></li>
4. <li><a href="#"><i class="icon-pencil"></i> Applications</a></li>
5. <li><a href="#"><i class="i"></i> Misc</a></li>
6. </ul>

Form fields

Example

Email address

1. <div class="control-group">
2. <label class="control-label" for="inputIcon">Email address</label>
3. <div class="controls">
4. <div class="input-prepend">
5. <span class="add-on"><i class="icon-envelope"></i></span>
6. <input class="span2" id="inputIcon" type="text">
7. </div>
8. </div>
9. </div>

Designed and built with all the love in the world by @mdo (http://twitter.com/mdo) and @fat
(http://twitter.com/fat).

Code licensed under Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0),


documentation under CC BY 3.0 (http://creativecommons.org/licenses/by/3.0/).

Glyphicons Free (http://glyphicons.com) licensed under CC BY 3.0


(http://creativecommons.org/licenses/by/3.0/).

Blog (http://blog.getbootstrap.com) · Issues (https://github.com/twbs/bootstrap/issues?


state=open) · Changelog (https://github.com/twbs/bootstrap/releases)

You might also like