A class does not appear to change the live preview
Likely cause: Utilities apply to the preview container, but sample child elements keep their own fixed classes.
Fix: Test layout utilities (flex, grid, gap) first—they affect the container. For text color or font-size, imagine the class on the element that actually needs it in your component.
Share link does not restore my composed classes
Likely cause: The ?c= query parameter was truncated, stripped by a messenger app, or the URL was opened without the full string.
Fix: Copy the class string directly from the Composer tab. Keep share URLs under ~2,000 characters; split very long stacks into multiple copies.
CSS export does not match my production build
Likely cause: This panel maps utilities to approximate declarations. Preflight, CSS variables, minification, and custom @theme tokens change final output.
Fix: Treat the CSS block as documentation. Verify in your app with DevTools computed styles or the Tailwind build output.
Search returns no results for a class I use daily
Likely cause: Custom plugin utilities, @apply component classes, and project-specific theme extensions are not in the default dataset.
Fix: Check tailwindcss.com/docs for plugin classes. Filter by category or version (v3 / v4) in case the utility is listed under a variant row (e.g. md:flex).
Dark mode or responsive classes look wrong in preview
Likely cause: The preview simulates viewport width and a dark background wrapper—it does not run your app's full dark-mode strategy (class vs media).
Fix: Toggle dark preview and sm/md/lg widths to sanity-check tokens, then confirm in your app with the same darkMode setting from tailwind.config or v4 @variant.
CSS → Tailwind matcher suggests the wrong utility
Likely cause: Multiple utilities can map to similar CSS values (e.g. p-4 vs px-4 py-4). Arbitrary values and theme extensions are not always exact matches.
Fix: Pick the utility that matches your design system scale. Prefer gap over margin, theme colors over arbitrary hex, and verify in Tailwind Play before committing.
Favorites or recent history disappeared
Likely cause: localStorage was cleared, private browsing ended, or browser storage quota blocked a save.
Fix: Re-star utilities as needed. Share URLs (?c=) do not depend on localStorage—use them for cross-device handoff.
Clipboard copy fails on mobile or Safari
Likely cause: Clipboard API requires a secure context (HTTPS) and a direct user gesture; some browsers block programmatic copy.
Fix: Tap the copy button again after interacting with the page, or long-press the code block to copy manually.