HTML Responsive Web Design
HTML Responsive Web Design
Responsive Web Design is about using HTML and CSS to resize, hide, shrink, enlarge, or move
the content to make it look good on any screen:
Try it Yourself »
https://www.w3schools.com/html/html_responsive.asp 1/13
12/25/2017 HTML Responsive Web Design
Setting The
HTML Viewport
CSS MORE
When making responsive web pages, add the following <meta> element in all your web pages:
Example
Try it Yourself »
This will set the viewport of your page, which will give the browser instructions on how to
control the page's dimensions and scaling.
Here is an example of a web page without the viewport meta tag, and the same web page with
the viewport meta tag:
https://www.w3schools.com/html/html_responsive.asp 2/13
12/25/2017 HTML Responsive Web Design
Tip: If you are browsing this page with a phone or a tablet, you can click on the two links
above to see the difference.
Responsive Images
Responsive images are images that scale nicely to fit any browser size.
https://www.w3schools.com/html/html_responsive.asp 3/13
12/25/2017 HTML Responsive Web Design
Example
Try it Yourself »
https://www.w3schools.com/html/html_responsive.asp 4/13
12/25/2017 HTML Responsive Web Design
Notice that in the example above, the image can be scaled up to be larger than its original size.
HTML CSS MORE
A better solution, in many cases, will be to use the max-width property instead.
Example
Try it Yourself »
https://www.w3schools.com/html/html_responsive.asp 5/13
12/25/2017 HTML Responsive Web Design
Resize the browser window to see how the image below change depending on the width:
HTML CSS MORE
Example
<picture>
<source srcset="img_smallflower.jpg" media="(max-width: 600px)">
<source srcset="img_flowers.jpg" media="(max-width: 1500px)">
<source srcset="flowers.jpg">
<img src="img_smallflower.jpg" alt="Flowers">
</picture>
Try it Yourself »
That way the text size will follow the size of the browser window:
Hello World
Resize the browser window to see how the text size scales.
Example
https://www.w3schools.com/html/html_responsive.asp 6/13
12/25/2017 HTML Responsive Web Design
<h1 style="font-size:10vw">Hello
HTML CSS MORE World</h1>
Try it Yourself »
Media Queries
In addition to resize text and images, it is also common to use media queries in responsive web
pages.
With media queries you can define completely different styles for different browser sizes.
Example: resize the browser window to see that the three div elements below will display
horizontally on large screens and stacked vertically on small screens:
Left Menu
Main Content
Right Content
Example
<style>
.left, .right {
float:left;
width:20%; /*The width is 20%, by default*/
}
.main {
float:left;
width:60%; /*The width is 60%, by default*/
}
https://www.w3schools.com/html/html_responsive.asp 7/13
12/25/2017 HTML Responsive Web Design
}
HTML CSS MORE
</style>
Try it Yourself »
To learn more about Media Queries and Responsive Web Design, read our RWD Tutorial.
Try it Yourself »
Using W3.CSS
A great way to create a responsive design, is to use a responsive style sheet, like W3.CSS
W3.CSS makes it easy to develop sites that look nice at any size; desktop, laptop, tablet, or
phone:
W3.CSS Demo
https://www.w3schools.com/html/html_responsive.asp 8/13
12/25/2017 HTML Responsive Web Design
London
London is the capital city of England.
It is the most populous city in the United Kingdom, with a metropolitan area of over 13
million inhabitants.
Paris
Paris is the capital of France.
The Paris area is one of the largest population centers in Europe, with more than 12 million
inhabitants.
Tokyo
Tokyo is the capital of Japan.
It is the center of the Greater Tokyo Area, and the most populous metropolitan area in the
world.
Example
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-row-padding">
<div class="w3-third">
<h2>London</h2>
<p>London is the capital city of England.</p>
<p>It is the most populous city in the United Kingdom,
with a metropolitan area of over 13 million inhabitants.</p>
</div>
<div class="w3-third">
https://www.w3schools.com/html/html_responsive.asp 9/13
12/25/2017 HTML Responsive Web Design
<h2>Paris</h2>
HTML CSS MORE
<p>Paris is the capital of France.</p>
<p>The Paris area is one of the largest population centers in Europe,
with more than 12 million inhabitants.</p>
</div>
<div class="w3-third">
<h2>Tokyo</h2>
<p>Tokyo is the capital of Japan.</p>
<p>It is the center of the Greater Tokyo Area,
and the most populous metropolitan area in the world.</p>
</div>
</div>
</body>
</html>
Try it Yourself »
Bootstrap
Another popular framework is Bootstrap, it uses HTML, CSS and jQuery to make responsive
web pages.
Example
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
>
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js">
</script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js">
</script>
https://www.w3schools.com/html/html_responsive.asp 10/13
12/25/2017 HTML Responsive Web Design
</head>
HTML CSS MORE
<body>
<div class="container">
<div class="jumbotron">
<h1>My First Bootstrap Page</h1>
</div>
<div class="row">
<div class="col-sm-4">
...
</div>
<div class="col-sm-4">
...
</div>
<div class="col-sm-4">
...
</div>
</div>
</div>
</body>
</html>
Try it Yourself »
❮ Previous Next ❯
https://www.w3schools.com/html/html_responsive.asp 11/13
12/25/2017 HTML Responsive Web Design
COLOR PICKER
HOW TO
Tabs
Dropdowns
Accordions
Convert Weights
Animated Buttons
Side Navigation
Top Navigation
Modal Boxes
Progress Bars
Parallax
Login Form
HTML Includes
https://www.w3schools.com/html/html_responsive.asp 12/13
12/25/2017 HTML Responsive Web Design
Google Maps
HTML CSS MORE
Range Sliders
Tooltips
Slideshow
Filter List
Sort List
SHARE
CERTIFICATES
HTML, CSS, JavaScript, PHP, jQuery, Bootstrap and XML.
Read More »
REPORT ERROR
https://www.w3schools.com/html/html_responsive.asp 13/13