标题bootbox问题

问题描述 投票:0回答:1

谁能告诉我如何解决它?我在警告框中有相同的标题问题。

bootbox.confirm({
    title: "Confirmation",
    message: "Are you sure you want to delete the selected items?",
    buttons: {
        confirm: {
             label: 'Yes',
             className: 'btn-success',
        },
        cancel: {
            label: 'No',
            className: 'btn-danger'
        }
    },
    callback: function (result) {
                    if (result == true) {
                        $("#delete").submit();
                    } 
                }
    });

enter image description here

javascript bootbox
1个回答
0
投票

你似乎弄乱了一些CSS。

也许你正在使用另一个覆盖bootbox样式的库。

您可以尝试以下方法来解决该特定问题:

.bootbox .modal-header h4 {
  float: none;
}

.bootbox .modal-header .close {
  position: absolute;
  right: 15px;
}
© www.soinside.com 2019 - 2024. All rights reserved.