A utility-first CSS framework you style with small classes in your markup instead of writing custom CSS.
Official siteTailwind CSS is a utility-first styling framework. Rather than writing custom CSS files and inventing class names, you compose designs directly in your markup from small single-purpose utility classes (like flex, pt-4, text-center). A build step then scans your files and ships only the utilities you actually used, keeping the final CSS tiny.
The approach is polarising but productive: it keeps styling co-located with markup, enforces a consistent design scale (spacing, colour, type), and removes the naming and dead-CSS problems that plague hand-written stylesheets on large projects.
Tailwind gives you a constrained set of design tokens exposed as utility classes. You build UI by combining them in HTML, configure the design system in one file, and let the build purge everything unused so production CSS stays lean.
Tailwind fits projects that want to move fast with a consistent design system and no growing pile of bespoke CSS — landing pages, product UIs, and design-system components. It pairs especially well with React and Next.js work.
Markup gets verbose — long strings of classes can hurt readability, mitigated with component extraction. There is a learning curve on the class vocabulary, and teams that prefer strict separation of concerns dislike styling in HTML. On this site we use Bootstrap 5, so Tailwind is a tool we apply where it suits, not a house default.
Tailwind CSS is a utility-first CSS framework that has become one of the most popular ways to style modern web applications. Instead of writing custom CSS or using pre-built components, you compose designs directly in your markup from small, single-purpose utility classes (like `flex`, `pt-4`, `text-center`). It matters because this approach dramatically speeds up UI development, keeps styling consistent through a design-system-in-config, and avoids the maintenance problems of large custom CSS files — you rarely leave your HTML, never invent class names, and the styles you are not using are stripped out at build time for a tiny final CSS bundle.
Tailwind provides a large set of utility classes mapped to a configurable design system (spacing, colours, typography, breakpoints), so you build UI by combining utilities in your HTML and customise the system in one config file. Its build step scans your markup and includes only the classes you actually use, so the shipped CSS stays small regardless of the framework's size. The main trade-offs are that markup becomes verbose with many classes (mitigated by component abstraction in your framework), and there is a learning curve to the utility names. In exchange you get speed, consistency, and no more battling a growing, brittle custom stylesheet.
Tailwind suits teams and projects that value development speed and design consistency and are comfortable styling in markup — it is especially productive with component-based frameworks (React, Vue, Angular) where repeated utility strings are abstracted into components. It is less appealing to those who strongly prefer separating styles from markup, or for very small projects where its build tooling is more setup than needed. The decision is largely stylistic preference plus workflow: for fast, consistent UI work in a component framework, Tailwind is a highly productive default; for teams committed to traditional CSS separation, a different approach may fit better.
Part of our technologies knowledge graph — browse every entry in this branch.
Meta's component-based UI library — the most widely used way to build interactive web interfaces.
The React meta-framework that adds routing, server rendering and full-stack features on top of React.
A typed superset of JavaScript that catches whole classes of bugs before your code ever runs.
Google's opinionated TypeScript framework for building large, structured single-page and server-rendered web apps.
Packages an app and its dependencies into a portable container that runs the same everywhere.
Common questions
Straight answers on how this fits your marketing and build.
Still have questions? Talk to a specialist