Tailwind CSS 背景图像无法与 @apply 一起使用
我正在使用 Tailwind 应用背景图像。我有单独的 CSS 文件。
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
body {
@apply bg-[url('./2.PNG')];
}
这是我的代码 Image 正在使用 background-image 属性,但不适用于 Tailwind。
I am applying background Image with Tailwind. I have separate file for CSS.
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
body {
@apply bg-[url('./2.PNG')];
}
This is my code Image is working with background-image property but not with Tailwind.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的语法
bg-[..]
仅在 Tailwind v3.x 中与其 JIT 编译器。对于 Tailwind v2.x,您可以在此处阅读了解如何实现背景图像适当地。
TL;DR:
然后像这样使用它
The syntax you are using
bg-[..]
was only introduced in Tailwind v3.x in combination with their JIT compiler.For Tailwind v2.x you can read up here on how to implement a background-image properly.
TL;DR:
Then use it like so
尝试
bg-[image:url('2.PNG')]
。如果没有
image:
tailwind 不知道bg-
是用于背景颜色还是用于图像。编辑:仅适用于 Tailwind v3.x。
Try
bg-[image:url('2.PNG')]
.Without
image:
tailwind does not know whether thebg-
is for the background color or for the image.edit: only works with tailwind v3.x.