File contents Responsive Web Design
Table of Contents
Overview
Build mobile-first responsive interfaces using modern CSS techniques including Flexbox, Grid, and media queries to create adaptable user experiences.
When to Use
Multi-device applications
Mobile-first development
Accessible layouts
Flexible UI systems
Cross-browser compatibility
Quick Start
Minimal working example:
/* Mobile styles (default) */
.container {
display: flex;
flex-direction: column;
padding: 16px;
gap: 16px;
}
.card {
padding: 16px;
border-radius: 8px;
background: white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
}
/* Tablet (640px and up) */
@media (min-width: 640px) {
.container {
flex-direction: row;
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
Guide
Contents
Mobile-First Media Query Strategy
Mobile-First Media Query Strategy
Flexbox Responsive Navigation
Flexbox Responsive Navigation
CSS Grid Responsive Layout
CSS Grid Responsive Layout
Responsive Typography
Responsive Typography
Responsive Cards Component
Responsive Cards Component
Best Practices
✅ DO
Follow established patterns and conventions
Write clean, maintainable code
Add appropriate documentation
Test thoroughly before deploying
❌ DON'T
Skip testing or validation
Ignore error handling
Hard-code configuration values
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1 --- 2 name: aj-geddes-useful-ai-prompts-responsive-web-design 3 description: Responsive Web Design 4 --- 5 6 # Responsive Web Design 7 8 ## Table of Contents 9 10 - [Overview](#overview) 11 - [When to Use](#when-to-use) 12 - [Quick Start](#quick-start) 13 - [Reference Guides](#reference-guides) 14 - [Best Practices](#best-practices) 15 16 ## Overview 17 18 Build mobile-first responsive interfaces using modern CSS techniques including Flexbox, Grid, and media queries to create adaptable user experiences. 19 20 ## When to Use 21 22 - Multi-device applications 23 - Mobile-first development 24 - Accessible layouts 25 - Flexible UI systems 26 - Cross-browser compatibility 27 28 ## Quick Start 29 30 Minimal working example: 31 32 ```css 33 /* Mobile styles (default) */ 34 .container { 35 display: flex; 36 flex-direction: column; 37 padding: 16px; 38 gap: 16px; 39 } 40 41 .card { 42 padding: 16px; 43 border-radius: 8px; 44 background: white; 45 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); 46 } 47 48 .grid { 49 display: grid; 50 grid-template-columns: 1fr; 51 gap: 16px; 52 } 53 54 /* Tablet (640px and up) */ 55 @media (min-width: 640px) { 56 .container { 57 flex-direction: row; 58 // ... (see reference guides for full implementation) 59 ``` 60 61 ## Reference Guides 62 63 Detailed implementations in the `references/` directory: 64 65 | Guide | Contents | 66 |---|---| 67 | [Mobile-First Media Query Strategy](references/mobile-first-media-query-strategy.md) | Mobile-First Media Query Strategy | 68 | [Flexbox Responsive Navigation](references/flexbox-responsive-navigation.md) | Flexbox Responsive Navigation | 69 | [CSS Grid Responsive Layout](references/css-grid-responsive-layout.md) | CSS Grid Responsive Layout | 70 | [Responsive Typography](references/responsive-typography.md) | Responsive Typography | 71 | [Responsive Cards Component](references/responsive-cards-component.md) | Responsive Cards Component | 72 73 ## Best Practices 74 75 ### ✅ DO 76 77 - Follow established patterns and conventions 78 - Write clean, maintainable code 79 - Add appropriate documentation 80 - Test thoroughly before deploying 81 82 ### ❌ DON'T 83 84 - Skip testing or validation 85 - Ignore error handling 86 - Hard-code configuration values 87 88 --- 89 > Converted and distributed by [TomeVault](https://tomevault.io/claim/aj-geddes) — claim your Tome and manage your conversions. 90 <!-- tomevault:4.0:skill_md:2026-04-11 -->
tomevault-io/skills-registry/tree/main/aj-geddes--useful-ai-prompts--responsive-web-design commit 9dda8cb55d
Frequently asked questions How do I install the Aj Geddes Useful AI Prompts Responsive Web Design skill? Run npx skillmds@latest add tomevault-io/aj-geddes-useful-ai-prompts-responsive-web-design in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Aj Geddes Useful AI Prompts Responsive Web Design skill do? Responsive Web Design It is listed under Coding & Dev Tools on SkillMD.
Is Aj Geddes Useful AI Prompts Responsive Web Design safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Aj Geddes Useful AI Prompts Responsive Web Design? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Aj Geddes Useful AI Prompts Responsive Web Design free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Aj Geddes Useful AI Prompts Responsive Web Design? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.