How to put scroll bar only for modal-body?

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

I have the following element:

13条回答
  •  感动是毒
    2020-11-30 18:25

    In your modal body you have to set a height, it can be % vh or calc:

    modal-body {
        height: 80vh;
        overflow-x: auto;
    }
    

    or

    modal-body {
        height: calc(100vh - 5em);
        overflow-x: auto;
    }
    

    In my case look like:

提交回复
热议问题