Hi everyone,

I would like one of my div to have an background-attachment: fixed

But the background still scroll 😤

This div is under html body div div div div div

and it CSS properties are

#TheDiv {
    min-height: 100vh;
    min-width: 100vw;
    background-image: url('/anImage.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    padding: 40px;
    box-sizing: border-box }

Any Ideas, what could cause the background to scroll anyway ?

Thanks

  • Corsair@programming.devOP
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    13 days ago

    I think I found the cause.

    one of the parent div have is properties perspective and it seem to be the problem… (Firefox 115*)

    So I created an dirty workaround ;)