Tailwind css 未包含在项目中

发布于 2025-01-09 23:19:19 字数 221 浏览 0 评论 0原文

我在 HTML 中使用 tailwind post CSS,但类不适用。 我已经安装了所有链接 CSS 的软件包。

tailwindconfigjs 文件

module.exports = {
  content: ["*"],
  theme: {
    extend: {},
  },
  plugins: [],
}

有什么需要改变的吗?

I am using tailwind post CSS in my HTML, but classes are not applying.
I have installed all packages have linked CSS too.

tailwindconfigjs file

module.exports = {
  content: ["*"],
  theme: {
    extend: {},
  },
  plugins: [],
}

Is there anything to change?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叶落知秋 2025-01-16 23:19:19

在 tailwind.config.js 中

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js}"],
  theme: {
    extend: {},
  },
  plugins: [],
}
  1. 将 Tailwind 指令添加到您的 css
@tailwind base;
@tailwind components;
@tailwind utilities;
  1. 通过运行将您编译的 CSS 文件添加到开始 Tailwind CLI 构建过程
npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch
  1. ,并开始使用 Tailwind 的实用程序类来设计您的内容。
<link href="/dist/output.css" rel="stylesheet">

请参阅 https://tailwindcss.com/docs/installation 了解更多详细信息

In tailwind.config.js

/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js}"],
  theme: {
    extend: {},
  },
  plugins: [],
}
  1. Add Tailwind directives to your css
@tailwind base;
@tailwind components;
@tailwind utilities;
  1. Start Tailwind CLI build process by running
npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch
  1. Add your compiled CSS file to the and start using Tailwind’s utility classes to style your content.
<link href="/dist/output.css" rel="stylesheet">

Refer https://tailwindcss.com/docs/installation for more details

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文