赞
踩
TailwindCSS + Element plus
el-button按钮在没有设置plain的情况下背景透明了,文字颜色也不对
打开F12查看按钮样式,发现是被Tailiwind的样式覆盖了,Tailwind采用的是属性选择器的方式来设置样式
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
},
plugins: [
],
corePlugins: {
preflight: false
}
}
去node_modules里找到tailwindcss,把preflight.css拷贝一份放在项目中公共样式文件夹下,然后把影响到button的部分注释掉
prefight.css位置如下
拷贝到项目styles文件夹下并注释掉button的样式
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。