Next.js Discord

Discord Forum

Image Background

Unanswered
Николя posted this in #help-forum
Open in Discord
Hello everyone, I have a page with a selection of series, a background image is installed there, there is a problem that the background is stretched as the block increases. That is, if there are more series, then it will stretch more, if there are fewer, then less. Here is a link to a page where you can see this clearly
https://demon-cave.club/choose
And a section of code on how I insert it
        <Image
          src={ph}
          alt='Танджиро'
          fill
          sizes="100vw"
          placeholder="blur"
          priority={true}
          quality={75}
          style={{
            objectFit: 'cover',
            zIndex: -1000,
            width: '100%'
          }} />


Please tell me how to fix this

0 Replies