Displaying an element outside overflow hidden container

后端 未结 8 1105
你的背包
你的背包 2020-12-31 06:14

I have a

which is made scrollable by wrapping it in a
of fixed height.

This

has a drop
8条回答
  •  -上瘾入骨i
    2020-12-31 06:58

    This is a trick that works. but be sure to test on your own.

    Chage Your Class From Position :relative To Position Fixed .

    .pRelative {
        position: fixed;
    }
    

    Here Is The DEMO

提交回复
热议问题