# Responsive Web Design Confidence: high Last verified: 2026-05-22 Generation: human_only ## TL;DR Responsive Web Design (RWD) creates websites that adapt to any screen size using fluid grids, flexible images, and CSS media queries. Coined by Ethan Marcotte (2010), RWD is now the standard approach for web development. ## Core Explanation Mobile-first: design for smallest screen first, progressively enhance for larger. Media queries: `@media (min-width: 768px)`. Container queries (2023+): style based on parent container size, not viewport. Fluid typography: `clamp(1rem, 2vw, 2rem)`. Viewport meta tag: ``. ## Further Reading - [Responsive Web Design (Ethan Marcotte)](https://alistapart.com/article/responsive-web-design/)