Skip to main content
DevTools24

Tailwind से CSS

Tailwind को CSS में कन्वर्ट करें।

Supported: Display, Position, Flexbox, Text, Spacing (margin, padding, gap), Sizing (width, height), Border radius, Overflow, Cursor, and more.
Note: Colors require your Tailwind config for accurate conversion.

Tailwind CSS - तकनीकी विवरण

Tailwind is a utility-first CSS framework. Each class maps to CSS properties: flex → display: flex, p-4 → padding: 1rem, text-red-500 → color: #ef4444. Responsive prefixes (md:, lg:) apply at breakpoints.

कमांड-लाइन विकल्प

<!-- Tailwind classes -->
<div class="flex items-center p-4 bg-blue-500">

/* Generated CSS */
display: flex;
align-items: center;
padding: 1rem;
background-color: #3b82f6;

संदर्भ

आधिकारिक स्पेसिफिकेशन देखें