美文网首页
CSS fixed布局无法向下滑动问题

CSS fixed布局无法向下滑动问题

作者: SY | 来源:发表于2023-02-28 15:51 被阅读0次

近期:
在写表单弹窗时,将position设置为fixed后,因为表单过长需要滑动,但是即使加上overflow: scroll页面也不会出现滚动条,无法滑动。
通过将top和bottom设置为0,解决了问题:

 {
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: scroll;
 }

相关文章

网友评论

      本文标题:CSS fixed布局无法向下滑动问题

      本文链接:https://www.haomeiwen.com/subject/aaylldtx.html