Next.js Discord

Discord Forum

Next/Image position off only in Chrome

Unanswered
Grand Basset Griffon Vendéen posted this in #help-forum
Open in Discord
Grand Basset Griffon VendéenOP
Next/Image position off only in Chrome

Chrome on the left. What do I do to make them alike? Edge is fine.

    <div className="Landing">
      <Image
        className="Landing__Backdrop"
        src="/landingBackdrop.avif"
        alt="Landing backdrop"
        priority
        fill
        loading="eager"
      />
    </div>

.Landing {
    position: relative;
    height: 100%;
    
    &__Backdrop {
        padding: 0 !important;
        box-sizing: border-box !important;
       
        left: -769px !important;
        width: 179% !important;
        object-fit: cover;
        
    }
}

1 Reply

Grand Basset Griffon VendéenOP
I have a slight hunch that some kind of CSS is applied to Chrome only, but I can't see any