作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
https://tailwindcss.com/docs/background-image#arbitrary-values
这就是我想要使用 Tailwind bg-image 功能的方式。这不适用于 SvelteKit next 160 和 Tailwind 3.0.9。
代码:
<script>
import globe from '$assets/bg/bg_globe2.png'
</script>
<div
class={`flex flex-col bg-primary-dark h-64 overflow-hidden bg-no-repeat bg-[right_-14rem_bottom_-10rem] bg-[url('${globe}')]`}
>
//children
</div>
bg-[right_-14rem_bottom_-10rem]
类工作没有问题,所以我假设 Tailwind 在 Svelte 文件路径方面有问题?
编辑:console.log(globe) 的输出是 src/assets/bg/bg_globe2.png
。
最佳答案
❌ Arbitrary values cannot be computed from dynamic values
<div class="bg-{ userThemeColor }"></div>
✅ Use inline styles for truly dynamic or user-defined values
<div style="background-color: { userThemeColor }"></div>
https://v2.tailwindcss.com/docs/just-in-time-mode#arbitrary-value-support
Tailwind 需要在您的代码中找到完整的文本值才能生成实用程序类。
关于tailwind-css - 如何在 SvelteKit 中使用 Tailwind 背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70585661/
我是一名优秀的程序员,十分优秀!