R
responsive-web-design
by @aj-geddesv
4.7(55)
CSS Grid、Flexbox、メディアクエリなどの技術を駆使してレスポンシブなウェブレイアウトを設計・実装し、様々なデバイスや画面サイズで最適なユーザーエクスペリエンスを提供します。
インストール方法
npx skills add aj-geddes/useful-ai-prompts --skill responsive-web-designcompare_arrows
Before / After 効果比較
1 组使用前
以前は、異なるデバイスや画面サイズに対応するウェブレイアウトを設計する際、各デバイスごとに個別のページを開発するか、複雑なフロートレイアウトを使用する必要があり、開発期間の長期化、メンテナンスの困難さ、そして小型スクリーンでのユーザーエクスペリエンスの低下を招いていました。
使用後
レスポンシブウェブデザインのスキルを適用し、CSS Grid、Flexbox、メディアクエリなどの現代的な技術を用いることで、あらゆるデバイスに自己適応するウェブページを一度に設計できます。これにより、開発プロセスが大幅に簡素化され、ユーザーエクスペリエンスとウェブサイトの保守性が向上します。
description SKILL.md
name: responsive-web-design description: > Create responsive layouts using CSS Grid, Flexbox, media queries, and mobile-first design. Use when building adaptive interfaces that work across all devices.
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
forumユーザーレビュー (0)
レビューを書く
効果
使いやすさ
ドキュメント
互換性
レビューなし
統計データ
インストール数1.5K
評価4.7 / 5.0
バージョン
更新日2026年3月16日
比較事例1 件
ユーザー評価
4.7(55)
5
0%
4
0%
3
0%
2
0%
1
0%
この Skill を評価
0.0
対応プラットフォーム
🔧Claude Code
🔧OpenClaw
🔧OpenCode
🔧Codex
🔧Gemini CLI
🔧GitHub Copilot
🔧Amp
🔧Kimi CLI
タイムライン
作成2026年3月16日
最終更新2026年3月16日