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. Responsive Web Design is about using HTML and CSS to automatically resize, hide, shrink, or enlarge, a website, to make it look good on all devices (desktops, tablets, and phones).
Setting The Viewport
To create a responsive website, add the following <meta> tag to all your web pages. This will set the viewport of your page, which will give the browser instructions on how to control the page's dimensions and scaling.
Ex: <meta name="viewport" content="width=device-width, initial-scale=1.0">
Responsive Images
Responsive images are images that scale nicely to fit any browser size. If the CSS width property is set to 100%, the image will be responsive and scale up and down. 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.
Ex: <img src="img_girl.jpg" style="width:100%;">
Show Different Images Depending on Browser Width
The HTML <picture> element allows you to define different images for different browser window sizes. Resize the browser window to see how the image below changes depending on the width.\
Ex: <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>
Responsive Text Size
The text size can be set with a "vw" unit, which means the "viewport width". That way the text size will follow the size of the browser window.
Ex: <h1 style="font-size:10vw">Hello World</h1>
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. For 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.
Ex: <style>
.left, .right {
  float: left;
  width: 20%; /* The width is 20%, by default */
}

.main {
  float: left;
  width: 60%; /* The width is 60%, by default */
}

/* Use a media query to add a breakpoint at 800px: */
@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}
</style>


Back to Top