javascript - How to show overflow content in bootstrap modal -


i using modals bootstrap web/mobile application. , intention modals fill on whole mobile screen when triggered. have added custom css make modals 'full size'.

.modal {   &.full_size {     top: 0;     bottom: 0;     left: 0;     margin-left: 0;     width: 100%;     height: 100%;   } } 

however, on mobile phone, although did see full screen modal being display, don't seem able see contents 'overflow' full screen modal i.e. if content height greater screen height, won't able scroll down see rest of content.

how can resolve can scroll , see content in modal?

try adding overflow:auto; allow scrolling when content exceeds container's dimensions


Comments

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -