Stepping Out With Bootstrap from Twitter

Twitter introduced Bootstrap recently, a library of CSS styles aimed at web app developers in need of some design help. The toolkit includes everything from grid layouts down to buttons and modals, and works on pretty much all modern browsers, all the way back to IE7.
Let's see what we can do with it...
Bootstrap is also enhanced through the Less preprocessor, which adds some additional reasons to use Bootstrap, although we'll exclude the Less functionality from the scope of this tutorial, to keep thing simple.
Bootstrap includes a bit of documentation, but nowhere does it really explain how to use the toolkit (instead, there's just one big demo page for you to investigate yourself). So, in this article, we're going to strip down Bootstrap's example page and analyze how to replicate the elements that Bootstrap covers. In providing examples, we'll also build up a sample webpage made entirely with Bootstrap.
What's Covered?
We're going to take a look at the following (use the links to skip to the various sections):
- The Grid System
- Typography
- Tables
- Forms and Buttons
- Navigation
- Tabs and Pills
- Pagination
- Alerts and Error Messages
- Modals
The Grid System



Grids are an integral part of a lot of web designs. Just as a city planner designs on a grid, a web designer can also align his elements in such a way. Bootstrap includes a grid system that totals 940px in width, encased inside the container
class. There are sixteen different column classes all together, with the width of each one cumulatively adding 60px as the number increases, starting at 40px. For example, the span1 class has a width of 40px, whereas the span3 class has a width of 160px.
As demonstrated in the image above, we can use a combination of different classes to create a total width equalling 940px, including the 20px margin added to each one. For example, the use of four div.span4
classes would, translated, mean 220+20+220+20+220+20+220 which, once we whip out the calculator, equals a full 940 pixels. By wrapping all these in a row
class, Bootstrap accounts for the twenty-pixel margin on the last column by moving the whole thing twenty-pixels back.
1 |
<div class="row"> |
2 |
<div class="span6"> |
3 |
<h1>Column #1</h1> |
4 |
<p>Content for column #1.</p> |
5 |
</div>
|
6 |
<div class="span5"> |
7 |
<h1>Column #2</h1> |
8 |
<p>Content for column #2.</p> |
9 |
</div>
|
10 |
<div class="span5"> |
11 |
<h1>Column #3</h1> |
12 |
<p>Content for column #3.</p> |
13 |
</div>
|
14 |
</div>
|
The above code will generate a fairly equal set of CSS columns displaying some minimal content. Naturally, we can just swap around some of these classes or add/subtract tags to create different layouts. Another feature of the Bootstrap toolkit is the ability to "skip" a column by offsetting it. The offset classes are, again, numbered 1-16 where their widths follow the same +60 pattern, although they now include an additional 40px to compensate for the left and right margin of said column. For example, we can take the above example, but remove the middle column by adding the offset5
class to the end tag. For example:
1 |
<div class="row"> |
2 |
<div class="span6"> |
3 |
<h1>Column #1</h1> |
4 |
<p>Content for column #1.</p> |
5 |
</div>
|
6 |
<div class="span5 offset5"> |
7 |
<h1>Column #3</h1> |
8 |
<p>Content for column #3.</p> |
9 |
</div>
|
10 |
</div>
|



It's pretty simple to manipulate this with only a few numbers needing to be changed, and the image at the start of this section should be used as a guide for some recommended structures.
Typography
One of the things that runs through pretty much all of the elements shown in this tutorial is typography. Bootstrap comes with all the typography tags you'd want styled for, everything from an <address>
tag to <h1>
and the whole heading hierarchy. Honestly, this is "Web Development 101" stuff that you probably already know, so I won't waste your time explaining how to style. It's pretty elemental stuff.
It is important to note that Bootstrap does account for older, now-deprecated tags, so you shouldn't worry there if you're using a CMS that uses them, or for a client who doesn't know any alternative.
Quoting
Where Bootstrap does need a little more explaining is when you come to use the <blockquote>
tag. You can use the tag on its own to show the quote indented, with a thick grey border on the left. However, it can be enhanced by nesting other tags inside to attribute the quote. When it comes to adding an attribute, simply wrap your quote text in a <p>
tag, and the source in a <small>
tag and Bootstrap will automatically style and put a dash in front of the source.
1 |
<blockquote>
|
2 |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</p> |
3 |
<small>Connor Turnbull, August 30th</small> |
4 |
</blockquote>
|
You'll end up with a result similar to the image below, depending on what content you put in between the paragraph and small tags.



Lists
Lists are another bit of the typography spectrum that is covered in Bootstrap, and comes with four different sets of styles: bulleted lists, nested bulleted lists, ordered lists and glossaries. Again, these are not that hard to use as they don't deviate from what's standard in HTML. Because lists can be constructed in different ways, here's a quick recap of how to use them with the Bootstrap styles.



The code below is a basic unordered, bulleted list that will produce something similar to the first example in the image below. Swap out the ul
for an ol
to produce an ordered list, like that in the second example.
1 |
<ul>
|
2 |
<li>Lorem ipsum dolor sit amet</li> |
3 |
<li>Consectetur adipiscing elit</li> |
4 |
... |
5 |
</ul>
|
If you add the unstyled
class to the unordered list, un-nested list items will not be bulleted, or ordered. They'll just appear like regular lines, whereas nested items will have a bullet to the left.
1 |
<ul class="unstyled"> |
2 |
<li>Lorem ipsum dolor sit amet</li> |
3 |
<li>Consectetur adipiscing elit</li> |
4 |
... |
5 |
</ul>
|
Adding a description list is done in the same way as you'd expect outside of Bootstrap, and results in a sample like the last one in the above image.
1 |
<dl>
|
2 |
<dt>Lorem ipsum</dt> |
3 |
<dd>Lorem ipsum dolor sit amet</dd> |
4 |
<dt>Consectetur</dt> |
5 |
<dd>Consectetur adipiscing elit</dd> |
6 |
... |
7 |
</dl>
|
Tables
Bootstrap is a toolkit that's aimed partly at new web designers, so it doesn't necessarily go without saying that these things are not meant for layouts. Instead tables are meant for tabular data, and Bootstrap does a pretty good job at beautifying your tabular data with its styles, without needing any additional classes or attributes. For example, we can take a look at a regular snippet of HTML that would generate a table.
1 |
<table>
|
2 |
<thead>
|
3 |
<tr>
|
4 |
<th>#</th> |
5 |
<th>First Name</th> |
6 |
<th>Last Name</th> |
7 |
<th>Language</th> |
8 |
</tr>
|
9 |
</thead>
|
10 |
<tbody>
|
11 |
<tr>
|
12 |
<td>1</td> |
13 |
<td>Some</td> |
14 |
<td>One</td> |
15 |
<td>English</td> |
16 |
</tr>
|
17 |
<tr>
|
18 |
<td>2</td> |
19 |
<td>Joe</td> |
20 |
<td>Sixpack</td> |
21 |
<td>English</td> |
22 |
</tr>
|
23 |
<tr>
|
24 |
<td>3</td> |
25 |
<td>Stu</td> |
26 |
<td>Dent</td> |
27 |
<td>Code</td> |
28 |
</tr>
|
29 |
</tbody>
|
30 |
</table>
|
The code above creates the table in the image below, as used in Twitter's official example. It has three content rows and a header in four columns, and is pretty standard. With little manipulation (scratch that, no manipulation) to the standard creation of a table, Bootstrap automatically applies its styles.



In this case, the paramount thing to remember is to correctly nest your tags. The styles do not apply if you don't wrap your heading row in a <thead>
tag, for example.
By default, the table is not zebra-striped, where alternate colors could fill the background of each row. This is easy to enable, however, simply by adding the zebra-striped
class to the <table>
tag without any manipulation of the rows or individual parts.
1 |
<table class="zebra-striped"> |
2 |
<thead>
|
3 |
<tr>
|
4 |
<th>#</th> |
5 |
... |



Finally, with the addition of a small piece of jQuery, but no change to the HTML apart from adding sortTableExample
as the ID of the <table>
tag, you can add sorting functionality when the heading of a column is clicked upon. This functionality requires the Tablesorter 2.0 jQuery plugin, downloadable for free. As you've probably already guessed, you'll also need to call jQuery for this to work.
1 |
<strong><script src="http://webdesigntutsplus.s3.amazonaws.com/tuts/195_bootstrap/tut/path/to/tablesorter/jquery.tablesorter.min.js"></script> |
2 |
<script>
|
3 |
$(function() { |
4 |
$("table#sortTableExample").tablesorter({ sortList: [[1,0]] }); |
5 |
});
|
6 |
</script></strong>
|
7 |
<table class="zebra-striped" id="sortTableExample"> |
8 |
<thead>
|
9 |
<tr>
|
10 |
<th>#</th> |
11 |
... |



Forms and Buttons
Most of the stuff we've already covered is pretty simple, where Bootstrap will apply styles to your code with little or no change from normal. Getting that out of the way, we can now move onto some stuff that requires a little more explaining and a bit more tutoring.
Forms
For forms, there are plenty of different styles you can use, so we're going to look at each one individually. You can then just use these in combination with each other, and manipulate them with preexisting knowledge of regular old HTML forms.
Firstly, it should be noted that your entire form should be wrapped in a <form>
tag, but you probably know that already. Bootstrap also recommends you wrap your elements in <fieldset>
tags, with an additional <legend>
tag.
1 |
<form>
|
2 |
<fieldset>
|
3 |
<legend>Lorem ipsum dolor sit amet</legend> |
4 |
<em>(your fields go here)</em> |
5 |
</fieldset>
|
6 |
</form>
|
Generally, your form setup shouldn't differ from the code above. The only other option that Bootstrap provides is to opt for stacked forms, where labels reside to the top of a field, rather than to the left. That can be achieved by adding the form-stacked
class to the <form>
tag.
1 |
<form class="form-stacked"> |
Text Input
To kick off our coverage of form fields, we'll look at a regular input field with a label. The code snippet below is essentially a <label>
and an <input>
tag, wrapped in a <div>
tag with the clearfix
class to ensure correct spacing. Additionally, the actual field is wrapped in another <div>
with the input
class, again, to ensure correct spacing.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<input type="text" /> |
5 |
</div>
|
6 |
</div>
|
For this tutorial's sake, i'm going to ignore a few practices that should be employed in your code. For example, each input should have an ID, which is bound to the label through "for" attribute, and you'll generally want to name your input fields to grab them when it comes to processing your data. We're looking specifically at how to use Bootstrap's styles here, so those types of attributes haven't been included in my examples to try and keep things as simple as possible. Nevertheless, even though they are being used in conjunction with Bootstrap, those tasks should not be forgotten.
By adding the xlarge
class to the <input>
, the form field is widened.
We can disable an input in the regular way, by adding the appropriate attributes, as demonstrated in the example below. Bootstrap's styles are added in the disabled
class, which should be added to visually show that a user cannot interact with that field by graying it out.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<input class="xlarge disabled" type="text" placeholder="Lorem ipsum dolor sit amet" disabled /> |
5 |
</div>
|
6 |
</div>
|
While the grayed out approach of a disabled field is achieved by using an <input>
tag, an uneditable one is not. Instead, Bootstrap uses a simple <span>
that can be used in conjunction with a hidden input. These fields are used for information which the user shouldn't edit, such as an automatically collected date or IP address.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<span class="uneditable-input">Lorem ipsum dolor sit amet</span> |
5 |
<input type="hidden" value="Lorem ipsum dolor sit amet" /> |
6 |
</div>
|
7 |
</div>
|
Our final look at styling text inputs is to show contextual help when an error is encountered. It is done by adding an error
class to the <div>
that forms the clearfix, and to the <input>
tag itself. Adding a <span>
tag with the help-inline
class underneath adds the help message on the right side.
1 |
<div class="clearfix error"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<input class="error" type="text" /> |
5 |
<span class="help-inline">Dolor sit amet</span> |
6 |
</div>
|
7 |
</div>
|



Dropdown Select
A dropdown menu is structured in a similar way, with the regular code being employed, as shown below.
1 |
<div class="clearfix"> |
2 |
<label>Lorem Ipsum</label> |
3 |
<div class="input"> |
4 |
<select>
|
5 |
<option>Lorem</option> |
6 |
<option>Ipsum</option> |
7 |
<option>Dolor</option> |
8 |
<option>Sit</option> |
9 |
<option>Amet</option> |
10 |
</select>
|
11 |
</div>
|
12 |
</div>
|
The xlarge
class to a text field is the opposite of the medium
class to a <select>
tag. Adding such a class to the dropdown menu of options will actually make the field narrower.



Checkboxes
Checkboxes aren't really styled in Bootstrap. The toolkit just arranges them to sit in line with the other fields, and does so by creating a list with each checkbox item. The code is pretty self-explanatory, just be sure to wrap both the label text and the checkbox in the <label>
tag so that (a) the checkbox is floated to the left and (b) the checkbox can be selected by clicking on the label.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<ul class="inputs-list"> |
5 |
<li>
|
6 |
<label>
|
7 |
<input type="checkbox" /> |
8 |
<span>Lorem ipsum dolor sit amet</span> |
9 |
</label>
|
10 |
</li>
|
11 |
</ul>
|
12 |
</div>
|
13 |
</div>
|
That code will generate a single checkbox with a label to the right. To create an additional one, just repeat the list item and its contents, then voilà, you have list of checkboxes.
To disable a checkbox, simply add the disabled
attribute to the <input>
tag, and the disabled
class to the <label>
tag.
1 |
<li>
|
2 |
<label class="disabled"> |
3 |
<input type="checkbox" disabled /> |
4 |
<span>Lorem ipsum dolor sit amet</span> |
5 |
</label>
|
6 |
</li>
|



Additionally, there are two extra types of checkboxes which are paired with text fields: prepended and appended checkboxes. Again, this is fairly self-explanatory and is very similar to a regular text field. However, this time round you need to wrap the checkbox in a <label>
tag (with the add-on
class), and either the input-prepend
or the input-append
class to parent <div>
. Then, all that's left is to make sure you put the label and the field the right way round, depending on whether you want it prepended or appended.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input input-append"> |
4 |
<input type="text" /> |
5 |
<label class="add-on"><input type="checkbox" /></label> |
6 |
</div>
|
7 |
</div>
|
The above code is for an appended checkbox, but, if you wanted a prepended one, there's little to change.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input input-prepend"> |
4 |
<label class="add-on"><input type="checkbox" /></label> |
5 |
<input type="text" /> |
6 |
</div>
|
7 |
</div>
|



File Inputs
File inputs are very much like text fields and the code below is pretty self explanatory. Create a regular file input with the input-file
class.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<input type="file" class="input-file" /> |
5 |
</div>
|
6 |
</div>
|



Text Areas
The final Bootstrap style for forms is the text area. The text area is created in the same way as the single line text field. Like enlarging a text field, the text area also has its own class to make it wider, xxlarge
.
1 |
<div class="clearfix"> |
2 |
<label>Lorem ipsum</label> |
3 |
<div class="input"> |
4 |
<textarea></textarea>
|
5 |
</div>
|
6 |
</div>
|
Optionally, you can add a small help line below the field with the following line added immediately after the <textarea>
tag.
1 |
<span class="help-block">Lorem ipsum dolor sit amet</span> |



Buttons
Now it's time to process our form, and normally we do so by clicking a button. Fortunately, Bootstrap covers buttons and they're super simple to add.
Buttons can be added through either an <a>
or a <button>
tag. Both share the same classes and will look identical, but you should try and reserve buttons for actions, and links for, well, links. So, for example, a button would be written as so:
1 |
<button class="btn">Lorem ipsum</button> |
And an idential button, but created as a link, would be written as so:
1 |
<a href="#" class="btn">Lorem ipsum</a> |
By default, the button will appear in a light gray style. However, this can easily be changed to one of the four others (light blue, blue, green and red) by applying an additional class.
-
primary
for a blue button that is the primary action (e.g. submitting a form) -
info
for a lighter blue button, usually used to access information -
success
for a green button, used to signal success -
danger
for a red button, usually used for irreversible or dangerous actions such as deleting
1 |
<button class="btn primary">Primary</button> |
2 |
<button class="btn">Default</button> |
3 |
<button class="btn info">Info</button> |
4 |
<button class="btn success">Success</button> |
5 |
<button class="btn danger">Danger</button> |
We can also change the size of a button from the default. To enlarge it, simply add the large
class or shrink it with the (yep, you guessed it) small
class.
Finally, to disable a button, all we need to do is add the disabled
class and, in the case of an action button, set the disabled attribute.
1 |
<button class="btn disabled" disabled>Lorem ipsum</button> |
or
1 |
<a class="btn disabled">Lorem ipsum</a> |



Navigation
Bootstrap includes a fixed navigation bar that resembles the one on Twitter's website. The bar is essentially made up of three sections, the title link, the menu items in the search bar, encased in a couple of <div>
tags that aren't worthwhile explaining.
In the code below, you'll notice an <h3>
tag that holds the title. It's fairly easy to modify this and to add your own link and text.
1 |
<h3><a href="#">Lorem ipsum</a></h3> |
Following that are the menu items, which are just unclassified list items with links. It's straightforward enough to duplicate these items since they require no Bootstrap-specific styles, apart from the active
class on the current link.
1 |
<ul>
|
2 |
<li class="active"><a href="#">Home</a></li> |
3 |
<li><a href="#">Lorem</a></li> |
4 |
<li><a href="#">Ipsum</a></li> |
5 |
<li><a href="#">Dolor</a></li> |
6 |
</ul>
|
The last list is for the dropdown menu. It features a single list item, with another, nested list that appears on hover over. The third line of the code below is the list item that appears constantly on the navigation bar, whereas the list starting at line 4 is the hover items.
1 |
<ul class="nav secondary-nav"> |
2 |
<li class="menu"> |
3 |
<a href="#" class="menu">Lorem ipsum</a> |
4 |
<ul class="menu-dropdown"> |
5 |
<li><a href="#">Dolor sit</a></li> |
6 |
<li><a href="#">Amet Consequeter</a></li> |
7 |
<li class="divider"></li> |
8 |
<li><a href="#">Enough with the Latin</a></li> |
9 |
</ul>
|
10 |
</li>
|
11 |
</ul>
|
As you'll notice, adding an empty list item with the divider
class will add a divider in the dropdown menu.
In use, your topbar should look something like this, positioned right at the top of your page.
1 |
<div class="topbar"> |
2 |
<div class="fill"> |
3 |
<div class="container"> |
4 |
<h3><a href="#">WebDesignTuts+</a></h3> |
5 |
<ul>
|
6 |
<li class="active"><a href="#">Home</a></li> |
7 |
<li><a href="#">Tutorials</a></li> |
8 |
<li><a href="#">Articles</a></li> |
9 |
<li><a href="#">Weekly Polls</a></li> |
10 |
</ul>
|
11 |
<form action=""> |
12 |
<input type="text" placeholder="Search" /> |
13 |
</form>
|
14 |
<ul class="nav secondary-nav"> |
15 |
<li class="menu"> |
16 |
<a href="#" class="menu">Lorem ipsum</a> |
17 |
<ul class="menu-dropdown"> |
18 |
<li><a href="#">Dolor sit</a></li> |
19 |
<li><a href="#">Amet Consequeter</a></li> |
20 |
<li class="divider"></li> |
21 |
<li><a href="#">Enough with the Latin</a></li> |
22 |
</ul>
|
23 |
</li>
|
24 |
</ul>
|
25 |
</div>
|
26 |
</div>
|
27 |
</div>
|
Note that you will want to compensate for the bar's 40-pixel height at the top of your page, otherwise it will overlap the first elements on your page.



Tabs and Pills
Tabs and pills are insanely easy to create, as they are just regular old lists. Of course, they don't function - Bootstrap is all about the styles. Simply construct your list with the tabs
class for the tabbed interface, or the pills
class for the pill tabs. Like in the navigation bar in the previous section, adding the active
class to a list item will highlight it.
For the tab switcher, use something similar to this:
1 |
<ul class="tabs"> |
2 |
<li class="active"><a href="#">Lorem</a></li> |
3 |
<li><a href="#">Ipsum</a></li> |
4 |
<li><a href="#">Dolor</a></li> |
5 |
<li><a href="#">Sit</a></li> |
6 |
<li><a href="#">Amet</a></li> |
7 |
</ul>
|
To use pills instead, swap out the top line for the following.
1 |
<ul class="pills"> |



Pagination
We now move onto pagination, which is functionless (like the tabs and pills), but is still styled in Bootstrap. Bootstrap handles pagination buttons the same tabs, in a list which this time is wrapped in a <div>
with the pagination
class. Each list item can have a linked number in it (or an ellipsis), apart from the first and last items which are reserved for the prev/next links. These have the prev
and next
classes, respectively.
Additionally, any button can be disabled by adding the disabled
class, and the active link is highlighted with the active
class. Like so:
1 |
<div class="pagination"> |
2 |
<ul>
|
3 |
<li class="prev disabled"><a href="#">Prev</a></li> |
4 |
<li><a href="#">1</a></li> |
5 |
<li><a href="#">2</a></li> |
6 |
<li><a href="#">3</a></li> |
7 |
<li><a href="#">4</a></li> |
8 |
<li><a href="#">5</a></li> |
9 |
<li class="next"><a href="#">Next</a></li> |
10 |
</ul>
|
11 |
</div>
|



Alerts and Error Messages
Alert bars are visually very similar to buttons, although they are constructed differently. Every error message is a <div>
tag with the alert-message
class. There are four different types of message, each with a corresponding class that must also be added:
-
warning
for a yellow bar -
error
for a red bar -
success
for a green bar -
info
for a blue bar
Alert messages are then written as follows, selecting only one class from warning/error/success/info
.
1 |
<div class="alert-message warning/error/success/info"> |
2 |
<a class="close" href="#">×</a> |
3 |
<p><strong>Lorem ipsum</strong> dolor sit amet, consectetur adipiscing elit.</p> |
4 |
</div>
|
Just for your information, the second line of the code above adds the "×" to the right of the alter message, which could be linked to an action removing the message.



Alerts don't need to be a one line affair either. If your message extends beyond a single line, simply add the block-message
class to the code you'd use for a single line, while still using the different type classes.
1 |
<div class="alert-message block-message warning/error/success/info"> |
2 |
<a class="close" href="#">&times;</a> |
3 |
<p><strong>Lorem ipsum</strong> Fusce interdum euismod tempor...</p> |
4 |
</div>
|
These messages are also able to hold buttons, useful if the alert needs to be resolved with a choice. If you check back to our section on buttons, you'll know how to add these. Just make sure to use the small versions, by adding the small
class to the button itself, and wrap it in a <div>
tag with the alert-actions
class.
1 |
<div class="alert-message block-message warning/error/success/info"> |
2 |
<a class="close" href="#">&times;</a> |
3 |
<p><strong>Lorem ipsum dolor sit amet!</strong> Fusce interdum euismod tempor...</p> |
4 |
<div class="alert-actions"> |
5 |
<a href="#" class="btn primary small">Lorem ipsum dolor</a> |
6 |
<a href="#" class="btn small">Sit amet</a> |
7 |
</div>
|
8 |
</div>
|



Modals
Modals can be useful to show information in certain scenarios, commonly used for inputting data such as user information, or posts. Bootstrap's modal is fairly simple, and is split into three sections; the header, the body and the footer. First, we start off by opening the modal's <div>
tag, and positioning it with some in-line styles that Bootstrap requires.
1 |
<div class="modal" style="position: relative; top: auto; left: auto; margin: 0 auto; z-index: 1"> |
Inside that tag, we then place the three sections, the first being the header. The header has a class of modal-header
and includes just two lines, an <h3>
tag for the title, and the (optional) linked "×" that can be customized to close the popover.
1 |
<div class="modal-header"> |
2 |
<h3>Lorem ipsum</h3> |
3 |
<a href="#" class="close">&times;</a> |
4 |
</div>
|
Next up, we have the main body of content. It's very simple, being just a <div>
with the modal-body
class, and your content inside. As so:
1 |
<div class="modal-body"> |
2 |
<p>Lorem ipsum dolor sit amet</p> |
3 |
</div>
|
Finally, we have the modal footer (another <div>
, this time with the modal-footer
class) that generally consists of buttons to take action from. These are generated in exactly the same way as all the other buttons we've created with Bootstrap, so they need no additional explaining.
1 |
<div class="modal-footer"> |
2 |
<a href="#" class="btn primary">Lorem ipsum dolor</a> |
3 |
<a href="#" class="btn">Sit Amet</a> |
4 |
</div>
|
Okay, I lied. That wasn't the final step. We still need to close off the original <div>
.
1 |
</div>
|
Put all these parts together as one, and you get a pretty sweet modal window. Unfortunately, as I keep reminding you, Bootstrap is literally handling the styling here; the modal won't actually appear as if it's popped over. It would be awesome if Bootstrap expanded to have some functionality in addition to the CSS, but for the moment you'll have to generate or source your own.



Final Thoughts



The image above shows our final design. It consists of all the elements we've created in this tutorial (there's a seperate demo for the form elements), entirely within the scope of Bootstrap. Hopefully this article has been of use to you, especially since it can be difficult for some to decipher the included example page (which acts as the only documentation included in the download).
I love Bootstrap. If you're new to web development, it provides a great range of elements to use, although your site might end up looking a bit too Twitter-ish through a lot of shared elements. Nonetheless, the simplicity and ease of use is too difficult to ignore if you don’t want to/can’t write your own. I can’t wait to try and use some of this stuff in a new project.
Additional Resources
Using Less CSS, BluePrint and WP for a Faster Workflow Wptuts+
Quick Tip: Never Type a Vendor Prefix Again Nettuts+
Bootstrap From Twitter Is A New Web Designer’s Dream Web AppStorm
Bootstrap Templates on ThemeForest