Utilities
Understand the flow and working of Tailwind's utility classes.
We'll cover the following...
Tailwind’s utility classes
Tailwind’s utility classes are the most important part of Tailwind to understand.
Tailwind is made up of hundreds and hundreds of utility classes, most of which set the value of a single CSS property. For example, the .font-bold
utility class is an alias for the CSS property, font-weight: 700
. For class=font-bold
, we ...