我已经尝试了不同的解决方案,我发现在这里的Stackoverflow,但没有运气添加一个背景图像的一节。这是我目前的情况。
import Image from '../../public/images/header2.jpg';
const Home: React.FC = () => {
return (
<main className="super-donnie-bg-slate">
<section id="first" className="bg-no-repeat bg-bottom bg-cover px-4 md:px-8" style={{ backgroundImage:`url(${Image})`,backgroundRepeat:"no-repeat" }}>
<div className="container max-w-xs w-full md:max-w-sm lg:max-w-md xl:max-w-lg mx-auto pt-24 pb-96 "><img className="mb-8 max-w-full w-64 sm:w-full mx-auto" src="/images/fungifimage.gif" alt="Super donnie"></img>
<div className="mb-8">
<div className="super-donnie-text-yellow flex justify-between w-full mb-4"></div>
</div>
<p className="text-center text-2xl leading-tight super-donnie-font-press-start-2p ">text here.</p>
</div>
</section>
我可以得到一个图像,你可以看到从图像插入的div,但设置一个背景图像在部分,没有运气。
2条答案
按热度按时间dgtucam11#
找到了解决办法在tailwind.config.js文件中添加图像,如下所示,
n6lpvg4x2#
你可以使用className从顺风css和必须宽度和高度和关闭标签img在第一个标签
bg-[url('/img/hero-pattern.svg')]
方面-[4/3]
这里是您的代码