Shows the exact CSS
Shows the exact CSS output for any Tailwind class including variants.
500+ fast, free tools. Most run in your browser only; Image & PDF tools upload files to the backend when you run them.
Look up what CSS properties any Tailwind CSS utility class generates, including responsive and state variants.
The Tailwind Class to CSS Converter looks up the underlying CSS properties generated by any Tailwind CSS utility class, including responsive prefixes (sm:, md:, lg:, xl:, 2xl:), state variants (hover:, focus:, dark:, group-hover:), and arbitrary value brackets (e.g. w-[42px]). Understanding what CSS Tailwind generates is essential for debugging, for migrating projects away from Tailwind to custom CSS, for writing component library documentation, or simply for learning what each utility does. The tool supports Tailwind v3 classes and covers spacing, typography, colors, layout, flexbox, grid, borders, shadows, and more.
Shows the exact CSS output for any Tailwind class including variants.
Supports arbitrary values (w-[42px], text-[#ff0000]) and all state prefixes.
Useful for migrating from Tailwind to vanilla CSS.
Helps developers understand what utilities do without reading docs.
Shows the exact CSS output for any Tailwind class including responsive and state variants.
Supports arbitrary values (w-[42px], text-[#ff0000]) and all state prefixes including dark: and group-hover:.
Input: p-4
Output: .p-4 { padding: 1rem; /* 16px */ }
Input: hover:bg-blue-500
Output: .hover\:bg-blue-500:hover { background-color: rgb(59 130 246); }
Input: md:hover:text-red-600
Output: @media (min-width: 768px) { .md\:hover\:text-red-600:hover { color: rgb(220 38 38); } }
Input: w-[342px]
Output: .w-\[342px\] { width: 342px; }