网站制作 福宁网络有限公司,承德网站建设怎么建设的,商水住房城乡建设网站,自动跳转导航入口问题原因#xff1a;在使用 tailwindcss 时#xff0c;会导入大量的 tailwindcss 默认属性#xff0c;而默认样式中 button, [typebutton] 包含了 background-color: transparent; 从而导致 antd Button 按钮背景色变成透明。解决办法#xff1a;禁止 tailwindcss 的默认属…问题原因在使用 tailwindcss 时会导入大量的 tailwindcss 默认属性而默认样式中 button, [typebutton] 包含了 background-color: transparent; 从而导致 antd Button 按钮背景色变成透明。解决办法禁止 tailwindcss 的默认属性配置 tailwind.config.js corePlugins.preflight 设置为 false。 /** type {import(tailwindcss).Config} */
module.exports {content: [./index.html, ./src/**/*.{js,ts,jsx,tsx}],theme: {extend: {},},plugins: [],corePlugins: {preflight: false, // 添加这一行},
};