How to vertically align Bootstrap v4 modal dialogs

后端 未结 10 1382
轻奢々
轻奢々 2020-12-08 02:45

Vertically center modal dialogues in Bootstrap 4.

Note: The requirements below have been added to make it clear I am looking for a prop

10条回答
  •  攒了一身酷
    2020-12-08 03:20

    Try this,

    ::ng-deep{
        .modal-body{
            padding: 0.25rem;
            width: 600px !important;
        }
        .modal-content {
            position: relative;
            display: flex;
            flex-direction: row;
            margin-top: auto;
            margin-bottom: auto;
            width: 600px !important;
          }
    }
    

提交回复
热议问题