Will this converter parse nested CSS or SASS/SCSS rules?
No, our compiler focuses strictly on translating standard CSS property-value declarations. If you have nested SASS/LESS rules or complex media queries, we recommend compiling or flattening them to standard CSS blocks first before pasting.
What happens to unsupported custom CSS styles?
Styles that do not possess a direct, predefined Tailwind utility equivalent are automatically converted into modern arbitrary brackets notation (e.g. w-[231px] or background-color-[rgba(0,0,0,0.5)]), ensuring they still compile correctly in Tailwind without data loss.
Is it safe to paste corporate proprietary CSS sheets?
Yes, 100%. All parsing, translations, and string compile matches are computed locally inside your browser sandbox. We never host, log, or send your code inputs to external databases, protecting your intellectual property.
How does the converter handle complex borders?
Standard borders are split: `border-width: 1px` maps to `border`, while custom width pixels like `border-width: 3px` compile to the arbitrary class `border-[3px]`. Dynamic colors are mapped directly to arbitrary background or text classes inside brackets, such as `bg-[hsl(200,50%,50%)]`.
Strict Local Compilation: The Tailwind code assembler executes completely within the local browser sandbox. We do not store or transmit your layout design logs.