近期:
在写表单弹窗时,将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;
}
本文标题:CSS fixed布局无法向下滑动问题
本文链接:https://www.haomeiwen.com/subject/aaylldtx.html
网友评论