Responsive Design Patterns
A comprehensive collection of responsive design patterns for building layouts that adapt gracefully to any screen size.
Usage
Ask about responsive layout strategies, breakpoint management, fluid sizing, or adaptive patterns.
Examples
- "Create a mobile-first navigation that becomes a horizontal bar on desktop"
- "How do I implement fluid typography that scales smoothly?"
- "Build a responsive image gallery with different layouts per breakpoint"
Guidelines
- Start with mobile-first and enhance for larger screens
- Use relative units (rem, em, %) over fixed pixels
- Use clamp() for fluid sizing without media queries
- Test on real devices, not just browser resize
- Consider touch targets and interaction patterns per device