Browse Tailwind classes and copy them instantly.
Interactive picker for Tailwind classes with copy tool.
This is not a full Tailwind docs replacement. It focuses on real-world layout patterns and high-signal utilities. Designed for fast composition, not memorization — pick classes, preview the result, and copy what you need.
Click classes below to add or remove. Copy the combined string when ready.
Click classes to build...Your selected classes apply to the box below. Invalid utilities are ignored.
One-click copy for frequently used patterns.
bg-white rounded-lg shadow p-4 space-y-2flex flex-col gap-4flex items-center justify-center p-8 min-h-[200px]px-4 py-2 bg-blue-600 text-white rounded-lg font-mediumflex items-center justify-between gap-4 p-4 border border-gray-200flex items-center gap-2Tailwind CSS is a utility-first CSS framework. Instead of writing component-specific CSS or using predefined classes like .btn, you compose layouts and styles from small, single-purpose utilities like flex, p-4, and text-gray-700. Tailwind uses atomic classes instead of component abstractions because composition gives you flexibility without leaving your markup.
Each Tailwind class maps to one CSS property. flex sets display: flex; gap-4 sets gap: 1rem. This atomic approach means you compose over abstract. Your markup might look "long" with many classes, but you avoid naming things, you get consistent design tokens, and Tailwind purges unused styles in production. Classes scale better than bespoke component CSS because you reuse the same utilities everywhere.
Stack: Vertical layout with consistent gap. Use flex flex-col gap-4 for stacked content like forms or lists.
<div class="flex flex-col gap-4">
<div>Item 1</div>
<div>Item 2</div>
</div>Card: A container with padding, rounded corners, and shadow. Use bg-white rounded-lg shadow p-4 space-y-2 for cards, panels, or modals.
<div class="bg-white rounded-lg shadow p-4 space-y-2">
<h3>Title</h3>
<p>Content</p>
</div>Horizontal bar: Flex row with items centered and space between. Use flex items-center justify-between gap-4 for headers, nav bars, or inline actions.
Prefer gap over margin for layout spacing. gap-4 between flex/grid children is more predictable than mb-4 on each child. Use the spacing scale (p-2, p-4, gap-4, etc.) consistently instead of mixing arbitrary values. The Spacing Scale Assistant helps you choose consistent spacing tokens for your design system.
w-[347px] and p-[13px] bypass the design system. Use standard tokens when possible.md:flex lg:grid xl:block is hard to maintain. Start mobile-first, add breakpoints sparingly.flex gap-4 is cleaner.Tailwind shines for rapid prototyping, design systems with shared tokens, and teams that value consistency over abstraction. It works well with component frameworks like React because styles live in the component file. Tailwind is less ideal when you need highly dynamic styles (use inline styles or CSS variables), when designers hand off pixel-perfect CSS (you may fight the system), or when your team strongly prefers BEM or CSS-in-JS. For decorative effects like gradients or shadows, tools like the Box Shadow Generator, Border Radius Generator, and CSS Gradient Generator can produce Tailwind-friendly output.
Use a curated cheat sheet when you need speed: pick utilities, see patterns, copy and go. Use the official Tailwind docs when you need completeness: every variant, every plugin, configuration, and edge cases. This tool focuses on composition and real usage — the 20% of classes that cover 80% of layouts. Official docs are the source of truth. Use this for fast iteration; use docs when you hit a wall or need something niche.
Browse Tailwind classes and copy them instantly.
Free Tailwind CSS cheat sheet — browse and search all utility classes by category (spacing, typography, flex, grid, colors) and copy them instantly. Works for Tailwind v3. No signup.
Set inputs, grid cells, blend layers, or favicon source.
Check live output against your target layout or device.
Copy CSS, classes, or download icon files.
Advertisement
Utilities align with Tailwind v3 conventions—verify against your project's config for v4 changes.
Click any utility row to copy the class name to your clipboard.
Class lookups run offline in the page—no query data is sent to a server.
Verify output in production browsers and design tooling.
For design and prototyping—not a substitute for production asset pipelines.
Part of Design & UI Tools
More free tools for the same workflow.
Free favicon generator — create website favicons in 16×16, 32×32, 48×48, and 64×64 PNG sizes from text, emoji, or an uploaded image. Download as .ico or individual PNG files. No signup.
Free spacing scale generator — create 4px, 8px, or custom-base spacing systems and export them as CSS variables, Tailwind config, or design token JSON. No signup required.
Advertisement
Reviewed by EverydayTools Editorial Team on 2026-05-19.