解决Antd和tailwind样式冲突问题(Button背景透明)

问题描述

使用Antd5的Button组件时,设置了type为primary,但是背景是透明的,鼠标移入后,才显示背景色。

<Button type="primary">按钮</Button>

移入前:
在这里插入图片描述
移入后:
在这里插入图片描述
发现css中button的背景色为透明,这是tailwind的默认配置。
在这里插入图片描述

解决方法

禁止tailwindcss的默认属性
tailwind.config.js中添加corePlugins对象,并设置preflight为false。

在这里插入图片描述

corePlugins: {
    
    
  preflight: false,
},

猜你喜欢

转载自blog.csdn.net/owo_ovo/article/details/135472982