Tailwind CSS v4.3.2: Fixes for CI, Windows Watch Mode, and New Template Support

Tailwind CSS · 29 Jun 2026 · 2 min read

#tailwind

Tailwind CSS v4.3.2 has been released, focusing on stability and cross-platform improvements. This patch addresses several bugs in the CLI, Vite plugin, and CSS processing, while also expanding class extraction to more template engines.

Key changes in v4.3.2:

  • Fixed auto-rows-* and auto-cols-* utilities to accept bare spacing values (e.g., auto-rows-12, auto-cols-16). Previously, these utilities only worked with keyword values like min or fr.
  • Prevented @tailwindcss/cli in --watch mode from crashing on Windows when @source points to a non-existent directory. This resolves a common pain point for Windows developers.
  • Prevented @tailwindcss/vite from crashing in Deno v2.8.x when context.parentURL is not a valid URL. Deno users can now rely on HMR without errors.
  • Ensured @tailwindcss/cli in --watch mode rebuilds when the input CSS file changes in an ignored directory. The watcher now correctly picks up CSS file edits even inside ignored folders.
  • Allowed @variant rules used in addBase(…) to reference custom variants defined later in the config. This fixes ordering issues when using dynamic bases.
  • Prevented @tailwindcss/vite crash during HMR when scanned files or directories are deleted. Deletions are now handled gracefully.
  • Generated font-size instead of color declarations for text-[--spacing(…)]. Previously, this would incorrectly produce color values; now it respects the intended spacing dimension.
  • Prevented @source patterns from scanning unrelated sibling files and folders, reducing unnecessary file reads and improving build performance.
  • Added class extraction for Template Toolkit delimiters (%]…[%) in .tt, .tt2, and .tx files, and Maud conditional syntax (p.text-black[condition]). This expands Tailwind's utility-first workflow to more template ecosystems.
  • Prevented @position-try rules from triggering unknown at-rule warnings during CSS optimization. This silences false positives when using experimental CSS features.
  • Added class suggestions for named opacity values (e.g., bg-black/50), improving the autocomplete experience.

For developers, v4.3.2 is a maintenance release that improves reliability across different environments (Windows, Deno) and toolchains. The fixes for watch mode crashes and HMR stability are especially critical for teams using Tailwind in CI or with live reload setups. The new template engine support broadens the framework's applicability for projects using Perl and Maud.

Source: https://github.com/tailwindlabs/tailwindcss/releases/tag/v4.3.2

Related

auto-curated · source linked above ← all news