Published
- 1 min read
bootstrap large modal
The solution for this is noted below
bootstrap large modal
Solution
<button
type="button"
class="btn btn-primary"
data-toggle="modal"
data-target=".bd-example-modal-lg"
>
Large modal
</button>
<div
class="modal fade bd-example-modal-lg"
tabindex="-1"
role="dialog"
aria-labelledby="myLargeModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-lg">
<div class="modal-content">...</div>
</div>
</div>
Try other methods by searching on the site. That is if this doesn’t work