HTML Responsive Web Design
HTML Responsive Web Design
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Responsive web design is about creating web pages that look good on all devices!
A responsive web design will automatically adjust for different screen sizes and
viewports.
https://www.w3schools.com/Html/html_responsive.asp 1/16
5/8/25, 11:31 AM HTML Responsive Web Design
Try it Yourself »
Tutorials Exercises Services Sign Up Log in
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
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:
Without the viewport meta tag: With the viewport meta tag:
https://www.w3schools.com/Html/html_responsive.asp 2/16
5/8/25, 11:31 AM HTML Responsive Web Design
Responsive Images
Responsive images are images that scale nicely to fit any browser size.
https://www.w3schools.com/Html/html_responsive.asp 3/16
5/8/25, 11:31 AM HTML Responsive Web Design
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Example
<img src="img_girl.jpg" style="width:100%;">
https://www.w3schools.com/Html/html_responsive.asp 4/16
5/8/25, 11:31 AM HTML Responsive Web Design
Try it Yourself »
Tutorials Exercises Services Sign Up Log in
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Notice that in the example above, the image can be scaled up to be larger than its
original size. A better solution, in many cases, will be to use the max-width property
instead.
https://www.w3schools.com/Html/html_responsive.asp 5/16
5/8/25, 11:31 AM HTML Responsive Web Design
Tutorials
Example
Exercises Services Sign Up Log in
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
<img src="img_girl.jpg" style="max-width:100%;height:auto;">
Try it Yourself »
Resize the browser window to see how the image below changes depending on the
width:
Example
<picture>
<source srcset="img_smallflower.jpg" media="(max-width: 600px)">
https://www.w3schools.com/Html/html_responsive.asp 6/16
5/8/25, 11:31 AM HTML Responsive Web Design
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
<h1 style="font-size:10vw">Hello World</h1>
Try it Yourself »
Viewport is the browser window size. 1vw = 1% of viewport width. If the viewport is
50cm wide, 1vw is 0.5cm.
Media Queries
https://www.w3schools.com/Html/html_responsive.asp 7/16
5/8/25, 11:31 AM HTML Responsive Web Design
In addition to resize text and images, it is also common to use media queries in
Tutorials
responsive web Exercises
pages. Services Sign Up Log in
Example: resize the browser window to see that the three div elements below will
display horizontally on large screens and stack 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 8/16
5/8/25, 11:31 AM HTML Responsive Web Design
Try it Yourself »
Tutorials Exercises Services Sign Up Log in
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Tip: To learn more about Media Queries and Responsive Web Design, read our RWD
Tutorial.
Try it Yourself »
Ever heard about W3Schools Spaces? Here you can create your website from scratch
or use a template, and host it for free.
https://www.w3schools.com/Html/html_responsive.asp 9/16
5/8/25, 11:31 AM HTML Responsive Web Design
Responsive
Tutorials Web Design
Exercises Services - Frameworks
Sign Up Log in
W3.CSS
W3.CSS is a modern CSS framework with support for desktop, tablet, and mobile design
by default.
W3.CSS Demo
Resize the page to see the responsiveness!
It is the most populous The Paris area is one of It is the center of the
city in the United the largest population Greater Tokyo Area, and
Kingdom, with a centers in Europe, with the most populous
metropolitan area of over more than 12 million metropolitan area in the
13 million inhabitants. inhabitants. world.
Example
<!DOCTYPE html>
<html>
<head>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
https://www.w3schools.com/Html/html_responsive.asp 10/16
5/8/25, 11:31 AM HTML Responsive Web Design
<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">
<h2>Paris</h2>
<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 »
https://www.w3schools.com/Html/html_responsive.asp 11/16
5/8/25, 11:31 AM HTML Responsive Web Design
Bootstrap
Tutorials Exercises Services Sign Up Log in
HTML
AnotherCSS JAVASCRIPT
popular SQLis Bootstrap:
CSS framework PYTHON JAVA PHP HOW TO W3.CSS C
Example
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap 5 Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet">
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min
.js"></script>
</head>
<body>
https://www.w3schools.com/Html/html_responsive.asp 12/16
5/8/25, 11:31 AM HTML Responsive Web Design
</div>
</div>Tutorials Exercises Services Sign Up Log in
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Try it Yourself »
?
Exercise
There is a CSS font size unit that sizes text in percent of the viewport, what
unit is that?
px
em
vw
vp
Submit Answer »
❮ Previous Next ❯
https://www.w3schools.com/Html/html_responsive.asp 13/16
5/8/25, 11:31 AM HTML Responsive Web Design
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
COLOR PICKER
PLUS SPACES
https://www.w3schools.com/Html/html_responsive.asp 14/16
5/8/25, 11:31 AM HTML Responsive Web Design
Tutorials Exercises
FOR BUSINESS
Services
CONTACT US
Sign Up Log in
HTML
CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference
https://www.w3schools.com/Html/html_responsive.asp 15/16
5/8/25, 11:31 AM HTML Responsive Web Design
warrant full correctness
HTML
Copyright
CSS 1999-2025 by Refsnes
JAVASCRIPT SQLData. PYTHON
All Rights Reserved.
JAVA W3Schools
PHP is Powered
HOW TOby W3.CSS.
W3.CSS C
https://www.w3schools.com/Html/html_responsive.asp 16/16