Responsive design, breakpoints, container queries
Scanned 2/10/2026
Install to Claude Code
npx -y skills add fusengine/agents --skill tailwindcss-responsive --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Tailwindcss Responsive?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/fusengine-tailwindcss-responsive)More formats (shields.io, HTML) on the badges page.
---
name: tailwindcss-responsive
description: Responsive design, breakpoints, container queries
user-invocable: false
---
# Responsive Design
## Default Breakpoints
| Variant | Size | CSS |
|---------|--------|-----|
| `sm:` | 40rem (640px) | `@media (width >= 40rem)` |
| `md:` | 48rem (768px) | `@media (width >= 48rem)` |
| `lg:` | 64rem (1024px) | `@media (width >= 64rem)` |
| `xl:` | 80rem (1280px) | `@media (width >= 80rem)` |
| `2xl:` | 96rem (1536px) | `@media (width >= 96rem)` |
## Custom breakpoint
```css
@theme {
--breakpoint-3xl: 120rem;
}
/* Usage: 3xl:grid-cols-6 */
```
## Container Queries v4
```html
<div class="@container">
<div class="@md:grid-cols-2 @lg:grid-cols-3">
<!-- Responsive to container -->
</div>
</div>
```
## Mobile-first
```html
<div class="text-sm md:text-base lg:text-lg">
<!-- Small screens first -->
</div>
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Implement modern responsive layouts using container queries, fluid typography, CSS Grid, and mobile-first breakpoint strategies. Use when building adaptive interfaces, implementing fluid layouts, or creating component-level responsive behavior.