【发布时间】:2021-08-26 19:58:17
【问题描述】:
我正在使用 TailwindCSS,我创建了这样的实体:
@layer screens {
@responsive {
.flex-row-around {
@apply flex flex-row justify-around;
}
.flex-col-around {
@apply flex flex-col justify-around;
}
}
}
我已经生成了样式表,现在我正在尝试使用它:
<div class="flex-col-around md:flex-row-around">
...
</div>
但我的样式没有添加。做错了什么?
【问题讨论】:
标签: css tailwind-css