在Bootstrap中更改模态的宽度和高度

时间:2016-04-04 10:21:00

标签: css modal-dialog

我想在Bootstrap中更改模态的宽度和高度。 如何将模态的最大宽度设置为900px?如何将模态的最大高度设置为screenheight减去填充:20px。

我使用了这段代码,

.modal-dialog {
    width: 100%;
    max-width: 900px;
    height: calc(100vh - 40px);
}

但它没有用。

必须垂直和水平居中。

1 个答案:

答案 0 :(得分:1)

由于模态窗口已经position编辑relative,您可以使用它:

.modal-dialog {
  width: auto;
  height: auto;
  position: fixed;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
}

.modal-dialog .modal-content {
  height: 100%;
}

上面的CSS会使模态处于fixed位置,并使其在四边的10px偏移处。

输出:http://output.jsbin.com/kepuximasi