Trying to make bootstrap modal wider

后端 未结 3 391
醉话见心
醉话见心 2021-01-30 09:55

I am using this code but the modal is too thin:

3条回答
  •  盖世英雄少女心
    2021-01-30 10:35

    You could try:

    .modal.modal-wide .modal-dialog {
      width: 90%;
    }
    
    .modal-wide .modal-body {
      overflow-y: auto;
    }
    

    Just add .modal-wide to your classes

提交回复
热议问题