问题描述

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

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

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

解决方法

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

在这里插入图片描述

corePlugins: {
  preflight: false,
},
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐