Responsive Web Design Using Bootstrap
Responsive Web Design Using Bootstrap
using Bootstrap
What is Responsive Web Design?
• As the name suggests, Responsive Web Design is the technique for
developing websites and web portals in a more interactive way with
the robust CX/UX (customer/user experience) optimal view solutions
on a web page with the best browser compatibility that can run and
operate in various types of devices.
• As per the latest trends and business requirements in user experience
in smartphones and tablets with different Operating Systems(OS),
a web design should be more responsive to these devices.
• Responsive web design is a suitable, robust, and fast solution that
enables lesser efforts from the developers’ end.
• Web pages should not leave out information to fit smaller devices, but rather
adapt its content to fit any device:
Phone
Tablet
Desktop
responsive web design helps to resize, hide, shrink, enlarge, or move the content to make it look
good on any screen.
What is Responsive Web Design?
• Responsive layouts automatically accommodate and adjust to any
device's screen size, using a desktop, a laptop, a tablet, or a mobile
phone.
• Code reusability is one of the essential factors of website design
development.
• UI designers/developers can use the same or existing HTML code
logic in other website projects. Using this mechanism saves time,
effort, and repeated activities. There are various types of inbuilt UI
frameworks available. It can make the complex design more simple.
We can consider it an open-source toolkit for developing the UI
features with the benefit of HTML, CSS, JS, jQuery, etc.
• Bootstrap is the most popular HTML, CSS, and JavaScript framework
for developing responsive, mobile-first web sites.
• Bootstrap is completely free to download and use!
What is Bootstrap?
• Bootstrap is a free front-end framework for faster and easier web
development
• Bootstrap includes HTML and CSS based design templates for
typography, forms, buttons, tables, navigation, modals, image
carousels and many other, as well as optional JavaScript plugins
• Bootstrap also gives you the ability to easily create responsive designs
Bootstrap History
• Bootstrap was developed by Mark Otto and Jacob Thornton at
Twitter, and released as an open source product in August 2011 on
GitHub.
• Advantages of Bootstrap:
• Easy to use: Anybody with just basic knowledge of HTML and CSS can start
using Bootstrap
• Responsive features: Bootstrap's responsive CSS adjusts to phones, tablets,
and desktops
• Mobile-first approach: In Bootstrap 3, mobile-first styles are part of the core
framework
• Browser compatibility: Bootstrap is compatible with all modern browsers
(Chrome, Firefox, Internet Explorer, Safari, and Opera)
Where to Get Bootstrap?
• There are two ways to start using Bootstrap on your own web site.
• Download Bootstrap from getbootstrap.com
• If you want to download and host Bootstrap yourself, go to getbootstrap.com, and follow
the instructions there.
• Include Bootstrap from a CDN
• If you don't want to download and host Bootstrap yourself, you can include it from a CDN
(Content Delivery Network).
• MaxCDN provides CDN support for Bootstrap's CSS and JavaScript. You must also include
jQuery.
Bootstrap CDN
• You must include the following Bootstrap’s CSS, JavaScript, and jQuery from MaxCDN into your web page.
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet"href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
</html>
What is The Viewport?
• The viewport is the user's visible area of a web page.
• The viewport varies with the device, and will be smaller on a mobile phone
than on a computer screen.
• Before tablets and mobile phones, web pages were designed only for
computer screens, and it was common for web pages to have a static design
and a fixed size.
• Then, when we started surfing the internet using tablets and mobile phones,
fixed size web pages were too large to fit the viewport. To fix this, browsers
on those devices scaled down the entire web page to fit the screen.
Create Web Page with Bootstrap (2)
• Bootstrap is mobile-first
• Bootstrap 3 is designed to be responsive to mobile devices. Mobile-first styles
are part of the core framework.
• To ensure proper rendering and touch zooming, add the following <meta> tag
inside the <head> element:
• The width=device-width part sets the width of the page to follow the screen-
width of the device (which will vary depending on the device).
• The initial-scale=1 part sets the initial zoom level when the page is first loaded
by the browser.
Create Web Page with Bootstrap (3)
• Containers
• Bootstrap also requires a containing element to wrap site contents.
• There are two container classes to choose from:
• The .container class provides a responsive fixed width container. (See Sample)
• The .container-fluid class provides a full width container, spanning the entire width of
the viewport. (See Sample)
• Note: Containers are not nestable (you cannot put a container inside
another container).
What is a Grid-View?
Many web pages are based on a grid-view, which means that the page is divided into columns:
Using a grid-view is very helpful when designing web pages. It makes it easier to place elements on
the page.
A responsive grid-view often has 12 columns, and has a total width of 100%, and will shrink and
expand as you resize the browser window.
Bootstrap Grids
• Bootstrap’s grid system allows up to 12 columns across the page.
• If you do not want to use all 12 columns individually, you can group
the columns together to create wider columns:
<div class="col-md-12">Span 12 columns</div>
<div class="col-md-6">Span 6</div><div class="col-md-6">Span 6</div>
<div class="col-md-4">Span 4</div><div class="col-md-8">Span 8</div>
<div class="col-md-4">Span 4</div><div class="col-md-4">Span 4</div> <div class="col-md-
4">Span 4</div>
• Bootstrap's grid system is responsive, and the columns will re-arrange
automatically depending on the screen size.
Grid Classes
• The Bootstrap grid system has four classes:
• xs (for phones)
• sm (for tablets)
• md (for desktops)
• lg (for larger desktops)
• The classes above can be combined to create more dynamic and
flexible layouts.
Bootstrap Tables
• A basic Bootstrap table has a light padding and only horizontal dividers.
• The .table class adds basic styling to a table:
• Striped Rows
• The .table-striped class adds zebra-stripes to a table:
• Bordered Table
• The .table-bordered class adds borders on all sides of the table and cells:
• Hover Rows
• The .table-hover class enables a hover state on table rows:
• Responsive Tables
• The .table-responsive class creates a responsive table. The table will then scroll horizontally
on small devices (under 768px). When viewing on anything larger than 768px wide, there is
no difference:
Bootstrap Images
• Rounded Corners
• The .img-rounded class adds rounded corners to an image (IE8 does not support rounded
corners):
• Circle
• The .img-circle class shapes the image to a circle (IE8 does not support rounded corners):
• Thumbnail
• The .img-thumbnail class shapes the image to a thumbnail:
• Responsive Images
• Images comes in all sizes. So do screens. Responsive images automatically adjust to fit the
size of the screen.
• Create responsive images by adding an .img-responsive class to the <img> tag. The image will
then scale nicely to the parent element.
• The .img-responsive class applies display: block; and max-width: 100%; and height: auto; to
the image:
Bootstrap Buttons
• Button Styles
• Bootstrap provides seven styles of buttons with the following classes:
.btn-default
.btn-primary
.btn-success
.btn-info
.btn-warning
.btn-danger
.btn-link
Bootstrap Button Elements
• The button classes can be used on the following elements:
• <a>
• <button>
• <input>
Button Sizes
• Bootstrap provides four button sizes with the following classes:
.btn-lg
.btn-md
.btn-sm
.btn-xs
Block Level Buttons
• A block level button spans the entire width of the parent element.
• Add class .btn-block to create a block level button:
Active/Disabled Buttons
• A button can be set to an active (appear pressed) or a disabled
(unclickable) state:
• The class .active makes a button appear pressed, and the class .disabled
makes a button unclickable:
References
• Discovering the Internet: Complete, Jennifer Campbell, Course
Technology, Cengage Learning, 5th Edition-2015, ISBN 978-1-285-
84540-1.
• Basics of Web Design HTML5 & CSS3, Second Edition, by Terry Felke-
Morris, Peason, ISBN 978-0-13-312891-8.
• W3schools.com