Tailwind CSS

Shrivishnu
View Profile
Tailwind is a utility-first CSS framework packed with classes for each CSS property that can be composed to build any design. The classes are easy to remember as they are similar to the property that are used for. For example, the class name flex is used if you need to set display is flex. Some of the example that make easier to understand Tailwind would be :
.text-centerhas the CSS declaration as.text-center{ text-align: center; }.pt-20has the CSS declaration as.pt-20{ padding-top: 5rem; }