79735576

Date: 2025-08-14 14:55:50
Score: 0.5
Natty:
Report link

I had this problem and it turned out to be that I was missing the <div> with a class of "modal-content". I had something like this:

<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-body">
      Here is my body
    </div>
  </div>
</div>

It should have been like this:

<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-body">
        Here is my body
      </div>
    </div>
  </div>
</div>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Michael W