How to increase Bootstrap Modal Width? Ask Question

How to increase Bootstrap Modal Width? Ask Question

i've tried this but gone wrong

here's the css

body .modal-ku {
width: 750px;
}

and here's the failed result

ここに画像の説明を入力してください

ベストアンサー1

In your code, for the modal-dialog div, add another class, modal-lg:

<div class="modal-dialog modal-lg">

Or if you wanna centre your modal dialog, use:

.modal-ku {
  width: 750px;
  margin: auto;
}

おすすめ記事