如何在 tailwindcss 中使用伪选择器 before::after?
How to use pseudo selectors before::after in tailwindcss?
我很难在 Youtube 和 Google 上解决这个问题。看来这是我唯一能得到答案的地方了。
目前 tailwindcss 没有像 before::after 这样的伪元素实用程序。
为此你需要安装伪元素插件
# for NPM
npm install tailwindcss-pseudo-elements --save-dev
# for Yarn
yarn add tailwindcss-pseudo-elements -D
然后您需要在 tailwind.config.js 文件中添加一些行,
为此请参考 this
我很难在 Youtube 和 Google 上解决这个问题。看来这是我唯一能得到答案的地方了。
目前 tailwindcss 没有像 before::after 这样的伪元素实用程序。 为此你需要安装伪元素插件
# for NPM
npm install tailwindcss-pseudo-elements --save-dev
# for Yarn
yarn add tailwindcss-pseudo-elements -D
然后您需要在 tailwind.config.js 文件中添加一些行,
为此请参考 this