我在nextjs项目中使用了tailwind,当我重新启动服务器时(我的意思是用npm run dev再次启动服务器),一些tailwind代码不工作,当我在“inspect Element”中编写类属性时,它工作,但tailwind代码不工作。
不工作:w-1/2(宽度:25%),lg:w-0(媒体屏幕和(最大宽度:1024像素){代码})
我的顺风. config. js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: { max: "640px" },
md: { max: "768px" },
lg: { max: "1024px" },
xl: { max: "1280px" },
"2xl": { max: "1536px" },
}
},
plugins: [],
};
我的global.css文件:
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "./reset.css";
2条答案
按热度按时间nhhxz33t1#
你需要传递完整的
w-1/2
类,而不是像1/2
那样传递部分类,因为tailwind不支持动态类。请尝试以下代码。
并将其用作
编辑:使用安全列表类
作为最后的手段,Tailwind提供了安全列表类
安全列表是最后的手段,应该只在不可能扫描某些内容以查找类名的情况下使用。这种情况很少见,您应该几乎永远不需要此功能。
在您的示例中,您希望具有不同的宽度。您可以使用正则表达式来包括所有您希望使用
pattern
的宽度单位:
tailwind.config.js
mnemlml82#
你必须创建一个扩展对象,其中包含你的个性化代码,如下所示: