Tailwind CSS is a CSS framework and design system based on utility class, which can quickly add common styles to components, and support flexible extension of theme styles.
You can integrate Tailwind CSS in Rsbuild via PostCSS plugins.
Only tailwindcss
needs to be installed, no other npm packages are needed.
You can register the tailwindcss
PostCSS plugin through postcss.config.cjs or tools.postcss.
Create a tailwind.config.js
file in the root directory of your project and add the following content:
The above configuration is for reference only and can be modified to suit the needs of your project.
Add the @tailwind
directives in your CSS entry file:
Depending on your needs, you can selectively import the CSS styles provided by Tailwind CSS. Please refer to the @tailwind documentation for detailed usage of the @tailwind
directives.
You have now completed all the steps to integrate Tailwind CSS in Rsbuild!
You can use Tailwind's utility classes in any component or HTML, such as:
For more usage details, refer to the Tailwind CSS documentation.
Tailwind CSS provides a Tailwind CSS IntelliSense plugin for VS Code to automatically complete Tailwind CSS class names, CSS functions, and directives.
You can install this plugin in VS Code to enable the autocompletion feature.