Base CSS Bootstrap
Base CSS Bootstrap
Bootstrap (./index.html)
Base CSS
Fundamental HTML elements styled and enhanced with extensible
classes.
(https://srv.carbonads.net/ads/click/x/GTND42QNCKAIE
segment=placement:getbootstrapcom;)
Limited time offer: Get 10
free Adobe Stock images.
(https://srv.carbonads.net/ads/
segment=placement:getboots
ads via Carbon
(http://carbonads.net/?
utm_source=getbootstrapcom
Heads up! These docs are for v2.3.2, which is no longer officially supported. Check out the latest version of
Bootstrap! (https://getbootstrap.com/css/)
Typography
Code
Tables
Forms
Buttons
Images
Icons by Glyphicons
https://getbootstrap.com/2.3.2/base-css.html 1/35
7/25/2019 Base · Bootstrap
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>
https://getbootstrap.com/2.3.2/base-css.html 2/35
7/25/2019 Base · Bootstrap
Example
Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.
Duis mollis, est non commodo luctus.
<p class="lead">...</p>
Emphasis
Make use of HTML's default emphasis tags with lightweight styles.
<small>
Example
<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
Italics
For emphasizing a snippet of text with italics.
https://getbootstrap.com/2.3.2/base-css.html 3/35
7/25/2019 Base · Bootstrap
Example
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
Emphasis classes
Convey meaning through color with a handful of emphasis utility classes.
Example
Duis mollis, est non commodo luctus, nisi erat porttitor ligula.
Abbreviations
https://getbootstrap.com/2.3.2/base-css.html 4/35
Stylizedimplementation of HTML's <abbr> element for abbreviations
7/25/2019 and acronyms to show the expanded version
Base · Bootstrap
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
<abbr title="attribute">attr</abbr>
<abbr class="initialism">
Example
HTML (HYPERTEXT MARKUP LANGUAGE) is the best thing since sliced bread.
Addresses
Present contact information for the nearest ancestor or the entire body of work.
<address>
Example
Twitter, Inc.
795 Folsom Ave, Suite 600
San Francisco, CA 94107
P: (Phone) (123) 456-7890
Full Name
[email protected] (mailto:#)
https://getbootstrap.com/2.3.2/base-css.html 5/35
7/25/2019 Base · Bootstrap
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:#">[email protected]</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 posuere 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 posuere erat a ante.
</p>
3. <small>Someone famous <cite title="Source Title">Source Title</cite></small>
4. </blockquote>
https://getbootstrap.com/2.3.2/base-css.html 6/35
Alternate displays
7/25/2019 Base · Bootstrap
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
1. <ul>
2. <li>...</li>
3. </ul>
Ordered
A list of items in which the order does explicitly matter.
Example
1. <ol>
2. <li>...</li>
3. </ol>
Unstyled
Remove the default list-style and left padding on list items (immediate children only).
Example
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
1. <ul class="inline">
2. <li>...</li>
3. </ul>
Description
A list of terms with their associated descriptions.
Example
https://getbootstrap.com/2.3.2/base-css.html 8/35
7/25/2019 Base · Bootstrap
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> .
https://getbootstrap.com/2.3.2/base-css.html 9/35
7/25/2019 Base · Bootstrap
Example
Basic block
Use <pre> for multiple lines of code. Be sure to escape any angle brackets in the code for proper rendering.
Example
1. <pre>
2. <p>Sample text here...</p>
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
1. <table class="table">
2. …
3. </table>
https://getbootstrap.com/2.3.2/base-css.html 10/35
7/25/2019 Base · Bootstrap
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
.table-bordered
Example
.table-hover
Example
.table-condensed
Example
Class Description
Example
https://getbootstrap.com/2.3.2/base-css.html 12/35
7/25/2019 Base · Bootstrap
# Product Payment Taken Status
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. ...
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
<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
https://getbootstrap.com/2.3.2/base-css.html 13/35
7/25/2019 Base · Bootstrap
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…
Check me out
Submit
https://getbootstrap.com/2.3.2/base-css.html 14/35
7/25/2019 Base · Bootstrap
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
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>
https://getbootstrap.com/2.3.2/base-css.html 15/35
7/25/2019 Base · Bootstrap
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:
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>
Example
Text input
Textarea
Form control which supports multiple lines of text. Change rows attribute as necessary.
Example
1. <textarea rows="3"></textarea>
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
https://getbootstrap.com/2.3.2/base-css.html 17/35
7/25/2019 Base · Bootstrap
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="option1" 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="option2">
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
Selects
Use the default option or specify a multiple="multiple" to show multiple options at once.
Example
1
2
3
4
5
https://getbootstrap.com/2.3.2/base-css.html 18/35
7/25/2019 Base · Bootstrap
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>
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="Username">
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.
https://getbootstrap.com/2.3.2/base-css.html 19/35
7/25/2019 Base · Bootstrap
Example
$ .00
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
https://getbootstrap.com/2.3.2/base-css.html 20/35
7/25/2019 Base · Bootstrap
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
https://getbootstrap.com/2.3.2/base-css.html 21/35
7/25/2019 Base · Bootstrap
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>
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
https://getbootstrap.com/2.3.2/base-css.html 22/35
7/25/2019 Base · Bootstrap
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.
Example
.input-block-level
Relative sizing
Example
.input-min
.input-small
.input-medium
.input-large
.input-xlarge
.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.
https://getbootstrap.com/2.3.2/base-css.html 23/35
Grid sizing
7/25/2019 Base · Bootstrap
Use .span1 to .span12 for inputs that match the same sizes of the grid columns.
Example
.span1
.span2
.span3
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
https://getbootstrap.com/2.3.2/base-css.html 24/35
7/25/2019 Base · Bootstrap
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
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
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
https://getbootstrap.com/2.3.2/base-css.html 25/35
7/25/2019 Base · Bootstrap
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 that breaks onto a
new line and may extend beyond one line.</span>
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...
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
Disabled inputs
Add the disabled attribute on an input to prevent user input and trigger a slightly different look.
https://getbootstrap.com/2.3.2/base-css.html 26/35
7/25/2019 Base · Bootstrap
Example
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
https://getbootstrap.com/2.3.2/base-css.html 27/35
7/25/2019 Base · Bootstrap
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.
Primary btn btn-primary Provides extra visual weight and identifies the primary action in a set of
buttons
https://getbootstrap.com/2.3.2/base-css.html 28/35
7/25/2019 Base · Bootstrap
Button class="" Description
Warning btn btn-warning Indicates caution should be taken with this 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
Button sizes
Fancy larger or smaller buttons? Add .btn-large , .btn-small , or .btn-mini for additional sizes.
Example
1. <p>
2. <button class="btn btn-large btn-primary" type="button">Large button</button>
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</button>
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>
https://getbootstrap.com/2.3.2/base-css.html 29/35
Create block
7/25/2019 level buttons—those that span the full width ofBase
a parent—
· Bootstrapby adding .btn-block .
Example
Disabled state
Make buttons look unclickable by fading them back 50%.
Anchor element
Add the .disabled class to <a> buttons.
Example
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
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
Heads up! .img-rounded and .img-circle do not work in IE7-8 due to lack of border-radius support.
Icon glyphs
140 icons in sprite form, available in dark gray (default) and white, provided by Glyphicons
(https://www.glyphicons.com/).
https://getbootstrap.com/2.3.2/base-css.html 31/35
7/25/2019
icon-heart icon-star Base · Bootstrap
icon-star-empty icon-user
Glyphicons attribution
https://getbootstrap.com/2.3.2/base-css.html 32/35
Glyphicons
7/25/2019 (https://www.glyphicons.com/) Halflings are normally not available for free, but an arrangement between
Base · Bootstrap
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 (https://www.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.
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>
Example
User
https://getbootstrap.com/2.3.2/base-css.html 33/35
7/25/2019 Base · Bootstrap
1. <div class="btn-group">
2. <a class="btn btn-primary" href="#"><i class="icon-user icon-white"></i> User</a>
3. <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#"><span class="c
aret"></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
Navigation
Example
Home
Library
Applications
Misc
Form fields
Example
Email address
https://getbootstrap.com/2.3.2/base-css.html 34/35
7/25/2019 Base · Bootstrap
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 (https://twitter.com/mdo) and @fat (https://twitter.com/fat).
https://getbootstrap.com/2.3.2/base-css.html 35/35