Bootstrap 3 modal creates scrollbar when opened

前端 未结 13 1575
遥遥无期
遥遥无期 2020-12-10 03:03

I\'m trying to use Bootstrap for the first time and am having an issue with modal dialogs. Using the example code on this page, when the modal is opened a scrollbar appears,

相关标签:
13条回答
  • 2020-12-10 03:35

    Try with following css :

    .modal{
        overflow:auto;
    }
    

    I already solved my problem by this way.

    0 讨论(0)
提交回复
热议问题