Responsive Design
Responsive design is an approach to building websites so that pages adjust automatically to look and work well across different devices and screen sizes, from small phones to large desktop monitors. Instead of building separate versions of a site for each device, a single design adapts its layout to the environment in which it is viewed. This helps content remain readable and usable regardless of how someone accesses the page.
Responsive Web Design (RWD) is a web development approach in which a page's layout and presentation respond dynamically to the viewing environment, such as viewport dimensions, screen size, and orientation. It is commonly implemented through CSS techniques including fluid grids, flexible media, and media queries that apply different styles at defined breakpoints, allowing a single codebase to render appropriately across a range of devices and window sizes. While responsive design supports usability by accommodating different displays and can complement accessibility goals (for example, by supporting content reflow), it is distinct from accessibility conformance: meeting WCAG success criteria such as reflow and text resizing requires deliberate implementation and verification, and responsive layout alone does not guarantee that a page is accessible to assistive technology users or compliant with any specific standard or legal requirement. This entry describes a design technique and is not legal advice.
Why it matters
Responsive design matters because people access the web through a wide range of devices, from small smartphones to large desktop monitors, and content that works well on one screen may become cramped, cut off, or unusable on another. By allowing a single codebase to adapt its layout to the viewing environment, responsive design helps keep content readable and functional across this diversity of devices without requiring separate versions of a site to be built and maintained for each context.
Responsive techniques can also complement accessibility goals. For example, layouts that reflow gracefully as the viewport narrows or as content is enlarged support users who zoom in or who rely on smaller viewports, which relates to WCAG success criteria such as Reflow (added in WCAG 2.1) and text resizing. However, responsive design and accessibility conformance are not the same thing. A page can adapt visually to different screen sizes while still presenting barriers to assistive technology users, such as unlabeled controls or poor keyboard support.
Because of this distinction, teams should treat responsive design as a supporting technique rather than a guarantee of accessibility or legal compliance. Meeting specific WCAG success criteria requires deliberate implementation and verification, including manual and assistive technology testing, since automated checks and visual responsiveness alone do not confirm that a page is accessible or that it satisfies any particular standard or legal requirement. This entry describes a design technique and is not legal advice; organizations with compliance questions should consult qualified counsel and current agency guidance.
Who it's relevant to
Inside RWD
Common questions
Answers to the questions practitioners most commonly ask about RWD.