button, [type='button']
包含了 background-color: transparent;
从而导致 antd Button 按钮背景色变成透明。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, // 添加这一行
- },
- };