ブートストラップのモーダル幅を増やす方法は?


104

私はこれを試しましたが間違っています

ここにCSSがあります

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

これが失敗した結果です

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


1
ブートストラップでは、modal-sm、modal-lgを使用して、小さいサイズと大きいサイズを指定できます。
ライオンをレオします

特定のhtmlおよびcssコードを共有できますか。一部のスタイルは上書きされる可能性があります
Nikhil Batra

完全なコードを共有できますか、この例を見ることができます。このモデルでは、幅を変更できます。w3schools.com/bootstrap/...
ハーdevgun

1
@Hardevgunその例でモーダルサイズを変更できる場所を説明してください。これは、単純なデモで固定サイズのモーダルにすぎません。
ProfK 2018年

回答:


251

コードで、modal-dialogdivに別のクラスを追加しますmodal-lg

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

または、モーダルダイアログを中央揃えにしたい場合は、以下を使用します。

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

40

最も簡単な方法は、modal-dialogdivのインラインスタイルです。

<div class="modal" id="myModal">
   <div class="modal-dialog" style="width:1250px;">
      <div class="modal-content">
            ...

        </div>
     </div>
 </div>

28
すべての応答性についてのすべての大騒ぎはどうですか?
Abhinav Singh

@Abhinav Singh:その通りです。px値をハードコードすることはお勧めしません。パーセンテージまたはCalcをお勧めします。
考える

3
レスポンシブ:width:100%; max-width:1250px
clamchoda

15

私の場合、

  1. モーダルに静的な幅を与えると、応答性が低下します。
  2. modal-lgクラスは広い十分ではなかったです。

だから解決策は

@media (min-width: 1200px) {
   .modal-xlg {
      width: 90%; 
   }
}

そして、するのではなく、上記のクラスを使用するmodal-lgクラス


前のクラスを教えてください。
John Max

@JohnMax彼は「上記のクラスを使用する」という意味です
Heelis氏

8

Bootstrap 3では、モーダルダイアログを変更する必要があります。したがって、この場合は、modal-dialogが立っている場所にクラスmodal-adminを追加できます。

@media (min-width: 768px) {
  .modal-dialog {
    width: 600;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}

8

modal-lgmodal-xlクラスのどちらかを選択できます。カスタムの幅が必要な場合は、インラインCSSでmax-widthプロパティを設定します。例えば、

<div class="modal-dialog modal-xl" role="document">

または

<div class="modal-dialog" style="max-width: 80%;" role="document">

1
これは@sumod badchhapeでうまくいきました。私は「modal-lg」クラスを削除して、max-width:80%を入れました。
Sotiris Zegiannis

5

Bootstrapでは、デフォルトの幅はmodal-dialogです600px。ただし、幅を明示的に変更できます。たとえば、幅を選択した値に最大化する場合は、800pxたとえば次のようにします。

.modal-dialog {
    width: 800px;
    margin: 30px auto;
}

:この変更により、アプリケーションで使用するすべてのモーダルダイアログが設定されます。また、私の提案では、独自のCSSルールを定義して、フレームワークのコアに触れないことが最善です。

特定のモーダルダイアログにのみmodal-800設定する800px場合は、次のように、幅がに設定されている独自のキャッチーなクラス名を使用します。

HTML

<div class="modal">
   <div class="modal-dialog modal-800">
      <div class="modal-content">

      </div>
   </div>
</div>

CSS

.modal-dialog.modal-800 {
    width: 800px;
    margin: 30px auto;
}

同様に、modal-700幅がのような幅サイズに基づいてクラス名を持つことができます700px

お役に立てば幸いです。


4

モーダルで表示する必要がある大きなグリッドがあり、ボディに幅を適用するだけでは、ブートストラップクラスがありながらテーブルがオーバーフローしていたため、正しく機能していませんでした。私は同じ幅を適用してmodal-bodyしまいましたmodal-content

<!--begin::Modal-->
<div class="modal fade" role="dialog" aria-labelledby="" aria-hidden="true">
    <div class="modal-dialog modal-lg modal-dialog-centered" role="document">
        <div class="modal-content" style="width:980px;">
            <div class="modal-header">
                <h5 class="modal-title" id="">Title</h5>
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true" class="la la-remove"></span>
                </button>
            </div>
            <form class="m-form m-form--fit m-form--label-align-right">
                <div class="modal-body" style="width:980px;">
                </div>
                <div class="modal-footer">
                    <button type="button" class="btn btn-brand m-btn" data-dismiss="modal">Close</button>

                </div>
            </form>
        </div>
    </div>
</div>

<!--end::Modal-->

3

モーダルレスポンシブを維持したい場合は、ピクセルの代わりに幅の%を使用します。インライン(下記を参照)またはCSSで実行できます。

<div class="modal fade" id="phpModal" role="dialog">
            <div class="modal-dialog modal-lg" style="width:80%;">
                <div class="modal-content">
                    <div class="modal-header">
                        <button type="button" class="close" data-dismiss="modal">&times;</button>
                        <h4 class="modal-title">HERE YOU TITLE</h4>
                    </div>
                    <div class="modal-body helpModal phpModal">
                        HERE YOUR CONTENT
                    </div>
                </div>
            </div>
        </div>

CSSを使用している場合は、modal-smとmodal-lgで異なる%を実行することもできます。


3

モーダルの幅を大きくすると、ウィンドウが中央に表示されず、同じ問題に直面しました。回避策の後、私は以下の解決策を見つけました。

.modal-dialog {
    max-width: 850px;
    margin: 2rem auto;
}

1

実際には、モーダルdivにCSSを適用しています。

.modal-dialogにCSSを適用する必要があります

たとえば、次のコードを参照してください。

<div class="modal" id="myModal">
 <div class="modal-dialog" style="width:xxxpx;"> <!-- Set width of div which you want -->
      <div class="modal-content">
           Lorem Ipsum some text...content 

        </div>
     </div>
 </div>

Bootstrapには、div幅を設定するためのクラスも用意されています。

小さなモーダル用 modal-sm

そして大きなモーダルの場合 modal-lg


1

それを行う最も簡単な方法は次のとおりです。

$(".modal-dialog").css("width", "80%");

ここで、モーダルの幅を画面のパーセンテージで指定できます。

以下は、同じことを示すための実用的な例です。

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
  <script type="text/javascript">
  $(document).ready(function () {
  		$(".modal-dialog").css("width", "90%");
  });
  </script>
</head>
<body>

<div class="container">
  <h2>Modal Example</h2>
  <!-- Trigger the modal with a button -->
  <button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>

  <!-- Modal -->
  <div class="modal fade" id="myModal" role="dialog">
    <div class="modal-dialog">
    
      <!-- Modal content-->
      <div class="modal-content">
        <div class="modal-header">
          <button type="button" class="close" data-dismiss="modal">&times;</button>
          <h4 class="modal-title">Modal Header</h4>
        </div>
        <div class="modal-body">
          <p>Some text in the modal.</p>
        </div>
        <div class="modal-footer">
          <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        </div>
      </div>
      
    </div>
  </div>
  
</div>

</body>
</html>


1

nコード、modal-dialog divの場合、別のクラスmodal-lgを追加します。

modal-xlを使用する


1
他人の答えをコピーしないでください
Rai Talha Rehman Khan

0

これは、モーダルの最大幅が500pxに設定されており、modal-lgの最大幅が800pxであるために発生すると思います。自動に設定すると、モーダルが応答しやすくなります。


-2
.your_modal {
    width: 800px;
    margin-left: -400px; 
 }

左マージンの値はモーダルの幅の半分です。クラスがないため、これをMaruti Adminテーマで使用しています.modal-lg .modal-sm

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.