Home > Software engineering >  scrollify doesn't work inside a position:fixed div
scrollify doesn't work inside a position:fixed div

Time:01-21

I'm trying to use scrollify in a div whith fixed position, but it doesn't want to

i have to disable the parent fixed position and all overflows... Anyone has an idea?

CodePudding user response:

.fixed-content {
    top: 0;
    bottom:0;
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}

try this and please post your code with the question or erorr this will make more sence if people try to help you with your code

CodePudding user response:

Unfortunately, scrollify does not work inside a div with a fixed position. This is because of the way fixed positioning works in CSS. When an element has a fixed position, it is taken out of the regular document flow and is not affected by other elements. Therefore, scrollify cannot detect the scroll events inside the fixed position div.

The best solution would be to avoid using a fixed position div and instead use a different type of positioning such as absolute or relative. Alternatively, you could use a different JavaScript library or plugin that is designed to work with fixed position elements.

  • Related