Next.js Discord

Discord Forum

Do you use <Image/> if you want to put a background Image in <div>?

Unanswered
Golden paper wasp posted this in #help-forum
Open in Discord
Golden paper waspOP
Im just wondering if Wrapping an <Image/> to put a background in div is good? or should i just use the globals.css to put a background image on a certain div?

im just wonder if this could work

<Image>
  <div><div/>
<Image/>

or just use this


.hero {
  background-image: url('1.jpg');
  background-size: cover;
  filter: brightness(50%);
}

0 Replies