Installation
Setting up Tailwind CSS in a Parcel project.
Start by creating a new Parcel project if you don’t have one set up already. The most common approach is to add Parcel as a dev-dependency to your project as outlined in their getting started guide.
mkdir my-projectcd my-projectnpm init -ynpm install parcelmkdir srctouch src/index.html
Install @tailwindcss/postcss
and its peer dependencies via npm.
npm install tailwindcss @tailwindcss/postcss
Create a .postcssrc
file in your project root, and enable the @tailwindcss/postcss
plugin.
{ "plugins": { "@tailwindcss/postcss": {} }}
Create a ./src/index.css
file and add an @import
for Tailwind CSS.
@import "tailwindcss";
Run your build process with npx parcel src/index.html
.
npx parcel src/index.html
Add your CSS file to the <head>
and start using Tailwind’s utility classes to style your content.
<!doctype html><html> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link href="./index.css" type="text/css" rel="stylesheet" /> </head> <body> <h1 class="text-3xl font-bold underline"> Hello world! </h1> </body></html>
Tailwind CSS 中文网(本网站)的目标是为中文开发者提供准确、及时的 Tailwind CSS 中文文档
Tailwind CSS 中文文档由本网站维护人员共同翻译,采用 MIT 开源协议发布
本网站与 tailwindcss.com 及 Tailwind Labs Inc. 并无从属关系
Tailwind 商标由 Tailwind Labs Inc. 所有
京ICP备15031610号-8