부트 스트랩 모달 너비를 늘리는 방법은 무엇입니까?


106

나는 이것을 시도했지만 잘못되었습니다

여기 CSS입니다

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

그리고 여기에 실패한 결과가 있습니다

여기에 이미지 설명 입력


1
부트 스트랩에서는 작고 큰 크기에 대해 modal-sm, modal-lg를 사용할 수 있습니다.
레오 사자

특정 html 및 css 코드를 공유 할 수 있습니까? 일부 스타일은 오버라이드 (override) 점점 할 수있다
Nikhil 바 트라에게

전체 코드를 공유 할 수 있습니까? 아니면이 예제를 볼 수 있습니다.이 모델에서 너비를 변경할 수 있습니다. w3schools.com/bootstrap/...
하르 devgun

1
@Hardevgun이 예에서 모달 크기를 변경할 수있는 위치를 설명해주세요. 그것은 단순한 데모 고정 크기 모달에 지나지 않습니다.
ProfK

답변:


255

코드에서 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 값은 권장되지 않습니다. 백분율 또는 계산이 권장됩니다.
Thinking

3
responsive : width : 100 %; max-width : 1250px
clamchoda

15

나의 경우에는,

  1. 모달에 정적 너비를 부여하면 응답 성이 떨어집니다.
  2. modal-lg클래스는 넓은 충분하지 않았다.

그래서 해결책은

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

그리고 대신 위의 클래스를 사용하는 modal-lg클래스


이전 수업은 무엇입니까?
John Max

@JohnMax 그는 "위의 클래스 사용"을 의미합니다
Mr Heelis

11

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

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;
  }
}

5

Bootstrap에서 기본 너비 modal-dialog600px. 그러나 너비를 명시 적으로 변경할 수 있습니다. 예를 들어, 너비를 원하는 값으로 최대화 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>

부트 스트랩은 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

코드에서 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.