Skip to main content
Design

Responsive Design

Web design approach where layout and content automatically adapt to the screen size of the device.

Responsive design is no longer optional but a requirement for every modern website. Over 60% of web traffic is mobile, and Google ranks by the mobile-first index. A site that does not work well on phones loses users and search rankings.

What is Responsive Design?

Responsive Web Design (RWD) is an approach where a site’s layout, typography, images and navigation adapt automatically to screen size and resolution. The term was coined by Ethan Marcotte in 2010. The three pillars are: flexible grids (percentage widths instead of fixed pixels), flexible images (max-width: 100%) and CSS media queries (styles that apply from certain widths). Modern additions like CSS Grid, Flexbox, container queries and clamp() make responsive layouts more powerful and easier to build.

How does Responsive Design work?

CSS media queries are at the heart of responsive design. They define breakpoints at which the layout changes (e.g. 768px for tablets, 1024px for desktops). Mobile first means the base CSS targets small screens and media queries only add rules for larger screens. CSS Grid and Flexbox create layouts that reflow automatically. Responsive images use srcset to serve the right size per device. Viewport units (vw, vh) and clamp() allow fluid typography without extra media queries.

Practical Examples

1

News site: Desktop shows three columns, tablet two, phone one. Navigation becomes a hamburger menu on small screens.

2

E-commerce shop: Product grid adapts: four per row on desktop, two on tablet, one on phone. Images load at the right resolution.

3

Corporate site: Hero section uses clamp() for fluid typography. On phone the contact bar is fixed at the bottom.

4

Dashboard: CSS Grid reflows widgets: four across on desktop, 2×2 on tablet, stacked on phone.

5

Restaurant site: Menu changes from a multi-column table on desktop to an accordion on phone.

Typical Use Cases

Corporate sites: Professional presence on all devices for customers, partners and applicants

E-commerce: Best shopping experience on phone, tablet and desktop for maximum conversion

Content: Readable articles and media on any screen

Web apps: Dashboards and tools that work on desktop and tablet

Email: Responsive HTML emails that render correctly in major clients

Advantages and Disadvantages

Advantages

  • One site for all devices: No separate mobile site or m. subdomain
  • SEO: Google favours responsive sites in the mobile-first index
  • Cost: One responsive codebase instead of separate desktop and mobile
  • Future-proof: Flexible layouts adapt to new device sizes
  • Better UX: Users get an optimised experience on every device

Disadvantages

  • Complexity: Responsive layouts need more planning and CSS skill than fixed layouts
  • Performance: Without optimisation, mobile may still load desktop-sized assets
  • Testing: The site must be tested on many devices, browsers and resolutions
  • Design trade-offs: Not every desktop layout translates neatly to mobile

Frequently Asked Questions about Responsive Design

What does mobile first mean?

Mobile first means designing first for small screens (phones) and then enhancing for larger screens. Technically: base CSS is for mobile; media queries add rules for tablet and desktop. Google recommends it because the mobile-first index ranks the mobile version.

Which breakpoints should I use?

Common breakpoints follow device types: 640px (phones), 768px (tablets), 1024px (small desktops), 1280px (large desktops). Better than fixed numbers is to set breakpoints where the layout breaks. CSS container queries allow component-level breakpoints.

Is responsive the same as adaptive design?

No. Responsive uses fluid layouts that adapt continuously. Adaptive serves fixed layouts for specific widths (e.g. 320px, 768px, 1024px) and switches between them. Responsive is the usual choice because it adapts to any width, not just a few.

Related Terms

Want to use Responsive Design in your project?

We are happy to advise you on Responsive Design and find the optimal solution for your requirements. Benefit from our experience across over 200 projects.

Next Step

Questions about the topic? We're happy to help.

Our experts are available for in-depth conversations – no strings attached.

30 min strategy call – 100% free & non-binding

What is Responsive Design? Basics & Best Practices