Skip to main content

Responsive design, explained.

Published 2022/01/27 14:33

People visit websites in a lot of different devices and in a lot of different ways.

Some using their phones, some using their desktop computers, some using tablets.

The clever thing to do to reach the most amount of people, is to make your website available for each one of these devices.

How would you do that?

One possible way is to create 2-3 separate websites, each keeping one device type in mind. For example, 1 website specific for phones and 1 website specific for desktops and tablets. And when someone comes to your website, figure out where they should go from the size of their screen.

This is great and all, but there's a problem. You now have 2 separate independent websites to take care of.

What if there was a way to have a single website, with a single code base, and just rearrange the items within it depending on the size of the screen?

For example, when the user visits from a phone, hide the left-size menu in a hamburger icon?

This is possible with a technique called Responsive Design, or Responsive Web Design.

What is responsive design?

Responsive design is a technique used within CSS, which allows you to style things on a website depending on the size of the screen of your user. This way you can have only one webpage that looks different for different devices!

Responsive design makes use of a feature of CSS called "@media queries". It works like this:

Suppose you want each heading (h1) to have a red colour. In CSS you can do it like this:

h1{
    color: red;
}

Now suppose you want the headings to have a red colour, but ONLY if the user visits from their phone, let's say a screen less than 300 pixels wide. The way to express this size limitation in CSS is:

@media(max-width: 300px){
    /* CSS goes here */
}

So, to put these together, to make the heading red for small screens, we can do:

@media(max-width: 300px){
    h1{
        color: red;
    }
}

That's it!

A common usage is to hide an navigation bar from a website

Here it is in CSS:

nav{
    display: none;
}

@media(min-width: 320px){
    nav{
        display: block;
    }
}

The code above essentially hides the nav element (the navigation menu) by default until the screen is 320 px or larger.

Learn more

To learn more about responsive web design:

Dev, Explained (43 part series)

  1. Javascript Scopes, explained.
  2. Javascript Promises, explained.
  3. Accessibility, explained.
  4. React, explained
  5. Should I use forEach() or map()?
  6. Should I use Flexbox or CSS Grid?
  7. Docker, explained.
  8. Unit testing, explained
  9. Git, explained.
  10. Typescript, explained.
  11. async/await, explained.
  12. The DOM, explained.
  13. Regular expressions, explained
  14. GraphQL, explained.
  15. Vue, explained.
  16. Svelte, explained.
  17. API, explained.
  18. Javascript Hoisting, explained.
  19. Immediately Invoked Function Expressions (IIFE), explained.
  20. ARIA roles, explained.
  21. Test-driven Development, explained.
  22. ARIA live regions, explained.
  23. aria-label in accessibility, explained.
  24. Type coercion in Javascript, explained.
  25. Variables, explained.
  26. if statements, explained.
  27. Arrays, explained.
  28. Currying in Javascript, explained.
  29. Memoization, explained.
  30. For loops, explained.
  31. Javascript Prototypes, explained.
  32. React Hooks, explained.
  33. Graph databases, explained.
  34. MongoDB, explained.
  35. Serverless, explained.
  36. Javascript Callback functions, explained.
  37. HTML, explained.
  38. CSS, explained.
  39. Responsive design, explained.
  40. Javascript, explained.
  41. The CSS Box Model, explained.
  42. CSS Flexbox, explained.
  43. CSS Grid, explained.
2022 Savvas Stephanides
Buy me a coffee
Some icons from Freepik