Scrolling issues with multiple bootstrap modals

后端 未结 6 2119
夕颜
夕颜 2020-12-29 02:54

I have a page with a modal with a lot of info so you need to scroll. This modal contains a link to a second modal.

When I

  • open modal 1
  • click o
6条回答
  •  -上瘾入骨i
    2020-12-29 03:41

    Add

    .modal { overflow: auto !important; }
    

    To your CCS.

    Without your code I went ahead and created this jsFiddle that recreates your issue, or at least a very similar one. Add your code and I will test if this works or not.

    Adding that line to the CSS fixed the issue as demonstrated with this jsFiddle.

    Solution taken from this thread on github which offers other solutions as well.

提交回复
热议问题