【发布时间】:2020-12-12 11:26:26
【问题描述】:
我正在使用 TailwindCSS 和 PostCSS,我有这个 css 代码:
.btn {
@apply py-1;
@apply px-4;
@apply border;
@apply rounded;
}
.btn:hover {
@apply bg-white text-black;
}
.btn:focus {
@apply bg-black text-white;
}
PostCSS 中是否有本地方式(或使用插件)来编写如下代码?
.btn {
@apply py-1;
@apply px-4;
@apply border;
@apply rounded;
&:hover {
@apply bg-white text-black;
}
&:focus {
@apply bg-black text-white;
}
}
【问题讨论】:
-
搜索如何使用 postcss 和 sass
-
我没有使用 SASS!
-
是的,但是你需要添加一个插件
-
toptal.com/front-end/postcss-sass-new-play-date 这是一篇关于此的文章,可能会有所帮助
标签: css postcss tailwind-css postcss-import