Tailwind CSS
Tailwind is a utility-first CSS framework for rapidly building custom user interfaces. This guide will show you how to get started with Gatsby and Tailwind CSS.
Overview
There are two ways you can use Tailwind with Gatsby:
- Standard: Use PostCSS to generate Tailwind classes, then you can apply those classes using
className
. - CSS-in-JS: Integrate Tailwind classes into Styled Components.
You have to install and configure Tailwind for both of these methods, so this guide will walk through that step first, then you can follow the instructions for either PostCSS or CSS-in-JS.
Installing and configuring Tailwind
This guide assumes that you have a Gatsby project set up. If you need to set up a project, head to the Quick Start guide, then come back.
- Install Tailwind
- Generate Tailwind config file (optional)
Note: A config file isn’t required for Tailwind 1.0.0+
To configure Tailwind, you’ll need to add a Tailwind configuration file. Luckily, Tailwind has a built-in script to do this. Just run the following command:
Option #1: PostCSS
- Install the Gatsby PostCSS plugin gatsby-plugin-postcss.
- Include the plugin in your
gatsby-config.js
file.
- Configure PostCSS to use Tailwind
Create a postcss.config.js in your project’s root folder with the following contents.
- Use the Tailwind Directives in your CSS
You can now use the @tailwind
directives to add Tailwind’s utilities, preflight, and components into your CSS. You can also use @apply
and all of Tailwind’s other directives and functions!
To learn more about how to use Tailwind in your CSS, visit the Tailwind Documentation
Option #2: CSS-in-JS
These steps assume you have a CSS-in-JS library already installed, and the examples are based on Styled Components.
- Install Tailwind Babel Macro
Note: tailwind.macro
isn’t currently compatible with Tailwind 1.0.0+. However, a compatible beta is available at tailwind.macro@next
. Feel free to either use the beta or revert to TailwindCSS 0.7.4.
Option 1: Install tailwind.macro@next
and use Tailwind 1.0.0+
Option 2: Install stable tailwind.macro
and use Tailwind 0.7.4
- Use the Babel Macro (tailwind.macro) in your styled component
Other resources
Edit this page on GitHub