A utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.
Tailwind CSS is a utility-first CSS framework for rapidly building modern websites without ever leaving your HTML.
Tailwind CSS works by scanning all of your HTML files, JavaScript components, and any other templates for class names, generating the corresponding styles and then writing them to a static CSS file.
It's fast, flexible, and reliable — with zero-runtime.
Due to the difference in basic concepts in relation to other traditional CSS frameworks such as Bootstrap, it is important to know the philosophy from which Tailwind was created, as well as its basic usage.
The utility-first concept refers to the main differentiating feature of Tailwind. Instead of creating classes around components (button, panel, menu, textbox ...), classes are built around a specific style element (yellow color, bold font, very large text, center element...). Each of these classes is called utility classes.
There are many utility classes in Tailwind CSS that enable to control a large number of CSS properties like colors, border, display type (display
), font size and font, layout, shadow...
Tailwind offers the possibility to apply a utility class only in some situations through media queries, which is called a variant. The main use of variants is to design a responsive interface for various screen sizes. There are also variants for the different states an element can have, such as hover:
for when hovered, focus:
when keyboard selected or active:
when in use, or when the browser or operating system has dark mode enabled.
Variants have two parts: the condition to be met and the class that is applied if the condition is met. For example, the variant md:bg-yellow-400
will apply the class bg-yellow-400
if the screen size is greater than the value defined for md
.
Tailwind CSS is developed using JavaScript, runs via Node.js, and installs with environment package managers like npm
or yarn
.
It is possible to configure the utility classes and variants that Tailwind offers through a configuration file usually named tailwind.config.js
. In the configuration, one can set the values of the utility classes, such as the color-palette or the sizes between elements for margins.
The default mode of Tailwind is that the system generates all possible CSS combinations based on the project settings. Then, by means of another utility such as PurgeCSS, all the files are traversed, and the classes that are not being used are removed from the resulting CSS file.
Due to the number of classes that can be generated by the number of variants and their combinations, this method has the drawbacks of long waiting times and large sizes of CSS files before being purged. This mode of operation is no longer available in version 3 of Tailwind CSS.
JIT mode (Just-In-Time) is an alternative way to generate the CSS that, instead of generating all possible classes and then removing all those that are not being used, parses the content of HTML files (or configured extensions or locations) and instantly generates only those classes that are needed and used.
Because all possible variables are no longer generated, the waiting time and size of the resulting CSS files is greatly reduced. This technical improvement has made it possible to introduce numerous new variants and utility classes, as well as the ability to create utility classes on the fly with arbitrary values not set in the configuration.
Starting with version 3 of Tailwind CSS, JIT mode has become the default.
Beautiful Components & Templates built in Tailwind CSS.
Open-Source UI elements for any project.
Free Open Source Tailwind CSS Components.
A unique collection of Copy & Paste Tailwind CSS buttons.
Discover the best Tailwind templates & UI kits.
1200+ free HTML templates for websites, landing pages, blogs, portfolios, ecommerce and dashboards.