How to put scroll bar only for modal-body?

后端 未结 13 1171
悲哀的现实
悲哀的现实 2020-11-30 18:14

I have the following element:

13条回答
  •  独厮守ぢ
    2020-11-30 18:30

    If you're only supporting IE 9 or higher, you can use this CSS that will smoothly scale to the size of the window. You may need to tweak the "200px" though, depending on the height of your header or footer.

    .modal-body{
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    

提交回复
热议问题