Bootsrap Cheat Sgeet
Bootsrap Cheat Sgeet
Bootsrap Cheat Sgeet
0
CSS
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/css/
bootstrap.min.css" integrity="sha384-SI27wrMjH3ZZ89r4o+fGIJtnzkAnFs3E4qz9DIYioCQ5l9Rd/
7UAa8DHcaL8jkWt" crossorigin="anonymous">
JS
JS is only necessary if you plan on using one or all of the following components: Alerts, Buttons,
Carousel, Collapse, Dropdowns, Modals, Navbar, Tooltips and Scrollspy
Components Utilities
Breakpoints Typography
Extra small devices (portrait phones, less than .text-left Left aligned text
576px) do not require a breakpoint because .text-*-left Left aligned by breakpoint
Bootstrap 4 is mobile first. .text-center Center aligned text
.text-right Right aligned text
Breakpoints | Max container width
.text-justify Justified text
not needed=Extra small < 576px | None
(auto) .text-nowrap No wrap text
.text-(lowercause, uppercase, capitalize)
sm=Small ≥ 576px | 540px
Changes the text capitalization style
md=Medium ≥ 768px | 720px
.text-decoration-none Removes decoration
lg=Large ≥ 992px | 960px
.text-truncate Truncate text with ellipsis
xl=Extra large ≥ 1200px | 1140px .lead Good for first paragraph of article
.text-monospace Changes to monospace font
Media Queries
.font-weight-(bold, bolder, normal, light,
Change the width value to set a media query lighter, italic) Changes the font weight
for sm, md, lg, xl.
.blockquote Slightly increases font-size
/* Small devices (landscape phones, 576px and sets a bottom margin for blockquotes
and up) */
.(h1, h2, h3, h4, h5, h6) Used to make an
@media (min-width: 576px) { }
element match the heading styles
.display-(1, 2, 3, 4) Large display text.
BootstrapCreative.com : 21
Bootstrap 4
Images Display
.img-fluid Make an image responsive Value can equal one of the following:
.rounded Adds rounded corners to image none, inline, inline-block, block,
.rounded-circle Crops image to be circle table, table-cell, table-row, flex,
.img-thumbnail Adds rounded corner and img
inline-flex
border
.d-(value) for xs
.d-(sm, md, lg, and xl)-(value) sets
Floats display value for breakpoint and up
.border-*-0 (top, right, bottom, left) .shadow-(none, sm, lg) Remove box drop
Remove border on a certain edge shadow or change its size.
Border Radius
.rounded Adds border radius on all edges Sizing
.rounded-* (top, right, bottom, left,
circle) Adds a border radius
Make an element as wide or as tall (relative to
.rounded-0 Removes border radius
its parent)
.w-(5%, 50%, 75%, 100%, auto) Sets width
.h-(5%, 50%, 75%, 100%, auto) Sets height
.mw-(5%, 50%, 75%, 100%, auto) Sets max-
width
.mh-(5%, 50%, 75%, 100%, auto) Sets max-
height
Bootstrap 4
Spacing Visibility
Vertical Align
.align-(baseline, top, middle, bottom,
text-top, text-bottom) Changes
the vertical alignment of inline,
inline-block, inline-table, and table
cell elements.
BootstrapCreative.com : 23
Bootstrap 4
Starter Template
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-
fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/
css/bootstrap.min.css" integrity="sha384-SI27wrMjH3ZZ89r4o+fGIJtnzkAnFs3E4qz9DIYioCQ5l
9Rd/7UAa8DHcaL8jkWt" crossorigin="anonymous">
<!-- Main CSS -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="container">
<h1>Hello, world!</h1>
<div class="row">
<div class="col-sm-6">Left Column</div>
<div class="col-sm-6">Right Column</div>
</div>
</div>
<!-- jQuery first, then Popper, then Bootstrap JS. -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/js/bootstrap.min.js"
integrity="sha384-3qaqj0lc6sV/qpzrc1N5DC6i1VRn/HyX4qdPaiEFbn54VjQBEU341pvjz7Dv3n6P"
crossorigin="anonymous"></script>
<!-- Main JS -->
<script src="js/main.js"></script>
</body>
</html>
Bootstrap 4
<div class="container">
Media Object
<div class="row">
<div class="col-sm-6"></div>
<div class="media">
<div class="col-sm-6"></div>
<img src="https://dummyimage.
</div> com/100x100/563d7c/fff&text=+"
</div> class="mr-3" alt="image">
<div class="media-body">
Three Column Grid <h5 class="mt-0">Media heading</h5>
Media object description text
<div class="container"> </div>
<div class="row">
<div class="col-sm-4"></div>
<div class="col-sm-4"></div> Code
<div class="col-sm-4"></div>
</div> <code>
</div>
Used to display inline code in a paragraph
BootstrapCreative.com : 25
Bootstrap 4
Navbar
<nav class="navbar navbar-toggleable-md navbar-dark bg-primary">
<button class="navbar-toggler navbar-toggler-right" type="button" data-
toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">Navbar</a>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="http://example.com"
id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-
expanded="false">
Dropdown link
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li>
</ul>
</div>
</nav>
Bootstrap 4
Modal
BootstrapCreative.com : 27
Bootstrap 4
Forms
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-
describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email
with anyone else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1"
placeholder="Password">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
Buttons
.btn Needs to be added to all buttons because it adds padding and margin
.btn-* primary, secondary, success, danger, warning, info, light, dark, link
.btn-outline-* primary, secondary, success, danger, warning, info, light, dark, link
.btn-lg Large buttom
.btn-sm Smaller than default button
Example
<a class="btn btn-primary" href="#" role="button">Link</a>
<button class="btn btn-secondary" type="submit">Button</button>
Bootstrap 4
Carousel
<div id="carousel-name" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-name" data-slide-to="0" class="active"></li>
<li data-target="#carousel-name" data-slide-to="1"></li>
<li data-target="#carousel-name" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img class="d-block img-fluid" src="https://dummyimage.com/900x340/563d7c/
fff&text=+" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h3>Carousel Slider Title</h3>
<p>Description text to further describe the content of the slide image</p>
<a href="" class="btn btn-primary">Call to Action</a>
</div>
</div>
<div class="carousel-item">
<img class="d-block img-fluid" src="https://dummyimage.com/900x340/563d7c/
fff&text=+" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<a href="" class="btn btn-primary">Call to Action</a>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carousel-name" role="button" data-
slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carousel-name" role="button" data-
slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
BootstrapCreative.com : 29
Bootstrap 4
Jumbotron
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h1 class="display-3">Fluid jumbotron</h1>
<p class="lead">This is a modified jumbotron that occupies the entire horizontal
space of its parent.</p>
</div>
</div>
Card
<div class="card" style="width: 20rem;">
<img class="card-img-top w-100" src="https://dummyimage.com/600x400/563d7c/fff"
alt="Card image cap" >
<div class="card-body">
<h4 class="card-title">Card title</h4>
<p class="card-text">Some quick example text to build on the card title and make up
the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
Breadcrumbs
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Library</a></li>
<li class="active">Data</li>
</ol>
Responsive embed
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>
Bootstrap 4
Tabs
<ul class="nav nav-tabs" id="myTab">
<li class="nav-item">
<a class="nav-link active" data-toggle="tab" href="#tabOne">Tab 1</a>
</li>
<li class="nav-item">
<a class="nav-link" data-toggle="tab" href="#tabTwo">Tab 2</a>
</li>
</ul>
<div class="tab-content pt-3" id="myTabContent">
<div class="tab-pane fade active show" id="tabOne">Tab One Content</div>
<div class="tab-pane fade" id="tabTwo">Tab Two Content</div>
</div>
Alerts
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<strong>Note</strong> This alert is dismissable.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
Collapse
<a class="btn btn-primary mb-3 collapsed" data-toggle="collapse"
href="#collapseContent" role="button" aria-expanded="false" aria-
controls="collapseContent"><span class="if-collapsed"><b>+</b> Show Content</span>
<span class="if-not-collapsed"><b>-</b> Hide Content</span></a>
<div class="collapse" id="collapseContent">
<div class="card card-body">Collapse Content</div>
</div>
<style> /* this custom CSS is used to toggle the button text */
[data-toggle="collapse"].collapsed .if-not-collapsed,
[data-toggle="collapse"]:not(.collapsed) .if-collapsed {display: none;}
</style>
BootstrapCreative.com : 31
Bootstrap 4
Tables
<table class="table">
<thead class="thead-dark">
<tr>
<th>#</th>
<th>thead-dark</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Nina</td>
</tr>
</tbody>
</table>
Dropdowns
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdown" data-
toggle="dropdown" aria-haspopup="true"
aria-expanded="false">Dropdown Actions</button>
<div class="dropdown-menu" aria-labelledby="dropdown">
<a class="dropdown-item" href="#">Action One</a>
<a class="dropdown-item" href="#">Action Two</a>
<a class="dropdown-item" href="#">Action Three</a>
</div>
</div>
Bootstrap 4
/*
* Component section heading
*
* Component description and use
*/
.component-heading {
display: block;
width: 100px;
font-size: 1rem;
}
Learn More
BootstrapQuickStart.com
Bootstrap 4
.alert .btn
.badge-pill .card-footer
BootstrapCreative.com : 35
Bootstrap 4
.custom-control-input .embed-responsive-item
.custom-control-label .fade
.custom-file .figure
.custom-file-control .figure-caption
.custom-file-input .figure-img
.custom-file-label .fixed-bottom
.custom-radio .fixed-top
.flex-column-reverse .invalid-tooltip
.flex-fill .invisible
.flex-grow-* .is-invalid
.flex-shrink-* .is-valid
.float-(sm, md, lg, xl)-(none, left, .jumbotron
right) .jumbotron-fluid
.focus .justify-content-(sm, md, lg, xl)-(start,
.font-italic end, center, between, around)
.font-weight-(bold, bolder, light, .lead
lighter, normal) .list-group
.form-check .list-group-flush
.form-check-inline .list-group-horizontal-(sm, md, lg, xl)
.form-check-input .list-group-item
.form-check-label .list-group-item-action
.form-control .list-group-item-(primary, secondary,
.form-control-file success, danger, warning, info, light,
.form-control-(sm, lg) dark)
BootstrapCreative.com : 37
Bootstrap 4
.nav .progress-bar
.nav-fill .progress-bar-animated
.nav-item .progress-bar-striped
.nav-justified .rounded
.nav-link .rounded-(top, right, bottom, left,
.nav-pills circle, pill, 0, lg, sm)
.nav-tabs .rounded-circle
.navbar .row
BootstrapCreative.com : 39
Bootstrap 4
Multiples of 15 Multiples of 30
15 405 30 810
30 420 60 840
45 435 90 870
60 450 120 900
75 465 150 930
90 480 180 960
105 495 210 990
120 510 240 1020
135 525 270 1050
150 540 300 1080
165 555 330 1110
180 570 360 1140
195 585 390 1170
210 600 420 1200
225 615 450 1230
240 630 480 1260
255 645 510 1290
270 660 540 1320
285 675 570 1350
300 690 600 1380
315 705 630 1410
330 720 660 1440
345 735 690 1470
360 750 720 1500
375 765 750 1530
390 780 780 1560
BootstrapCreative.com : 41
Bootstrap 4
Bootstrap’s font sizes are calculated off of the body font size by using rem values. If you change
the body font size all styles will be increased/decreased automatically. Rem stands for “root em”
because it calculates the size based on the size of the root of the document or body tag.
• Any rule set with multiple declarations should be split to separate lines
because syntax errors on Line numbers would be hard to find.
• When using multiple CSS files, break them down by component instead
of page.
• Keep media queries as close to their relevant rule sets whenever possible.
Don't bundle them all in a separate stylesheet or at the end of the document.
• Avoid specifying units for zero values. For example, margin: 0; instead of
margin: 0px;.
BootstrapCreative.com : 97
Additional Reference
Bootstrap Reference
• Bootstrap 4 Classes Reference
https://bootstrapcreative.com/resources/
HTML Reference •
bootstrap-4-css-classes-index/
Bootstrap 3 Classes Reference
• Mozilla HTML Reference
https://bootstrapcreative.com/resources/
https://developer.mozilla.org/en-US/docs/
bootstrap-3-css-classes-index/
Web/HTML
• Official Bootstrap Documentation
• HTMLReference.io http://getbootstrap.com/
https://htmlreference.io/
• Bootsnip - Bootstrap Code Snippets
https://bootsnipp.com/
Bootstrap Code Snippets
and Examples Library
A collection of code snippets to help you quickly customize components.
Includes the necessary HTML, CSS, and JS you need to implement in your project.
https://bootstrapcreative.com/pattern/
Thank you!
I hope you have found this Bootstrap reference guide helpful
and informative.