CSS fixed布局无法向下滑动问题
2023-02-28 本文已影响0人
SY
近期:
在写表单弹窗时,将position设置为fixed后,因为表单过长需要滑动,但是即使加上overflow: scroll页面也不会出现滚动条,无法滑动。
通过将top和bottom设置为0,解决了问题:
{
position: fixed;
top: 0;
bottom: 0;
overflow: scroll;
}
近期:
在写表单弹窗时,将position设置为fixed后,因为表单过长需要滑动,但是即使加上overflow: scroll页面也不会出现滚动条,无法滑动。
通过将top和bottom设置为0,解决了问题:
{
position: fixed;
top: 0;
bottom: 0;
overflow: scroll;
}