Modal Bootstrap does not exceed end of page

0

I have a modal bootstrap and in it I display a table, but when that table returns many records the modal ends up overflowing off the screen, and it does not show the end of modal like in the image:

Thisproblembothersbecausetherearerecordsthatarehiddenbelowandnottoselect,incaseyouhavetozoomouttobeabletoviewtheentiremode.Inthezoomitlookslikethis:

I would like a way that this modal does not exceed the limits of the screen / monitor as it does for the upper and lateral margins, I have already tried with max-heigth but without success.

    
asked by anonymous 01.11.2017 / 05:42

1 answer

-1

Put in the CSS class of modal the following:

overflow: scroll; 

or

overflow: hidden;
    
01.11.2017 / 10:21