.modal-body {
height:100%;
overflow-y: scroll;
}
<div id="modal" class="modal fade" role="dialog">
<div class="modal-dialog" style="width:80%;height:100%">
<!-- Modal content-->
<div class="modal-content" style="width:80%;height:100%">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">ABC </h4>
</div>
<div class="modal-body" id="abcmodal" style="display:inline-block"style="height:auto;">
</div>
<div class="modal-footer" style="display:none;">
</div>
</div>
</div>
</div>
Everything is functioning correctly, but when the content is too lengthy, it becomes misaligned.
Screenshot :
Do you have any suggestions on what I should modify to address this issue?