Preflight
Learn how to include Tailwind's stylesheet in a project.
We'll cover the following...
Tailwind’s stylesheet
Tailwind utilities often come in families with a common pattern of beginnings or endings. When we talk about those, we’ll use: .text-{size} to indicate a family of utilities that include @tailwind base, @tailwind components, and @tailwind utilities. Each of these files contains a different set of CSS rules.
Note: In the Webpack-based installation, we import with
@importas the command name rather than ...
Ask