Single spacing utility
Input: p-4
Output: .p-4 { padding: 1rem; /* 16px */ }
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.
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; }