Bootstrap
Objectives
Define what front-end CSS frameworks are
Utilize a front-end grid system for mobile and desktop layout
Demonstrate ability to read documentation and implement an unfamiliar framework
Bootstrap
A little while back, a couple wonderful folks at Twitter created a front end framework called Bootstrap to make responsive web development much easier. Bootstrap is extremely popular and knowledge of at least one CSS framework is a valuable skill to have. Bootstrap comes with a ton of features including a responsive grid system, buttons, icons and some very nifty JavaScript plugins.
How to include it
You can include Bootstrap multiple ways, the easiest to start is a CDN. As we continue to use React and more robust tooling, we can also use package managers like npm
to import react and other libraries. Our current setup won't support this, but we'll use it in time!
CDN (content delivery network - someone else hosts the library/framework and you access it via a URL)
Include the actual CSS and JS files - great for offline development
Package manager (
npm
)
BootstrapCDN is a great place to start to see what the latest Bootstrap versions are.
Start with a container
To make sure that all your bootstrap styles behave properly, it's always best to put your content inside an element with a class "container" (usually a div). This will create a width of 1170px, and center all your content. If you would like to use the full width of the screen use class = "container-fluid"
.
Layout/Grid (row class, spans, offset, nesting)
UPDATE: Bootstrap 4 no longer includes a "xs" but it does include an "xl"! Refer to their docs for updated info.
The bootstrap grid is based on 12 columns that can are accessible using by placing the columns in <div class = "row">
(you must place your columns in a row) and then you use the following classes for these screen sizes.
col- = <576px
col-sm = >576px
col-md = >768px
col-lg >992px
col-xl >1200px
Here is an example of an two column layout.
You can see some more good examples here
You can also offset and nest your columns. When you offset a column, you add a column of whitespace and push the column to the right. Here is a example
Here is an example of nesting columns (putting one row inside another)
Buttons/positioning
To align text, use these classes.
Icons
UPDATE: Glyphicons were dropped from Bootstrap 4 for sensible reasons (unecessary bloat mostly). If you want icons, try Font Awesome!
Bootstrap comes with a set of tons of icons.
Here's the basic syntax to create an icon. Make an <i>
tag and apply two classes. The first class is always glyphicon
and the second class is the specific icon you want. Here's one where we're using the glpyhicon-ok
class to get a big nice checkmark on our page:
You can put icons anywhere. They look good in buttons!
See a full list of icons in the Bootstrap documentation about glyphicons
The text below each icon shows you the two classes used to refer to it.
Typography (lead, muted, warning/error/success/info, small>cite attr -> cite title = "test")
Bootstrap also comes with some nice styles to improve the quality of your typography including:
lists (unstyled class removed padding and bullets class inline to display on the same line")
You can also use Bootstrap to style your lists and remove bullet points and margin
You can also style them to be inline (good for navigation)
Tables
Bootstrap is really awesome at formatting tables for you and with only a couple classes you can have some spiffy looking tables. Add class="table"
to your table tag to include this and if you would like a striped design include the class table-striped
to your table tag. The table-striped will only add stripes to whatever is in your tbody
tag. If you would like borders as well include table-bordered
in your table tag.
Buttons (link, xs, sm, lg, block, disabled)
Bootstrap comes with quite a few button default sizes and colors, to add these make sure you add a class = btn btn-___
Bootstrap defines these as:
You can also add .btn-lg, .btn-sm, or .btn-xs for additional sizes.
Images (rounded, img-fluid, rounded-circle)
Bootstrap helps you format images using rounded (rounds the corners), rounded-circle (makes the image a circle) and img-thumbnail (adds a border). You can also add a class of img-fluid to your image to make it scale well when the screen size changes (this sets its max-width to 100% and the height to auto)
Forms
Bootstrap is also very helpful when you need to style your forms. All textual <input>, <textarea>, and <select>
elements with .form-control
are set to width: 100%; by default. Wrap labels and controls in .form-group for optimum spacing. You can create horizontal and inline forms and style each of your inputs and validations as well. Read more about form styling here
JavaScript + Bootstrap
Bootstrap can also do some nifty things for you with it's JavaScript plugins. This includes carousels, modals, popovers, dropdowns and other nice pieces of functionality that will really spruce up your app. Always make sure you understand what the code is doing before copying and pasting it. Fortunately, this is not too challenging and Bootstrap has excellent documentation. As always, if you're confused or things are breaking - google around. Bootstrap is pretty much ubiquitous and it is likely that the problems you have, other people have had (and hopefully solved) as well.
Last updated