-
부트스트랩에서 모달창 이용할때 바디부분에 스크롤 넣고 싶을때부트스트랩 2020. 6. 7. 22:51728x90
css부분
.modal-dialog{ overflow-y: initial !important }
.modal-body{ height: 100%; overflow-y: auto; }스크립트부분
$('head').append('<style type="text/css">.modal .modal-body {max-height: ' + ($('body').height() * .8) + 'px;overflow-y: auto;}.modal-open .modal{overflow-y: hidden !important;}</style>');
추가해주면 됨!
728x90