I am using twitter bootstrap for the project I'm working on.
I have a modal window with a slightly longer shape, and I did not like it when the window became too small, the modal did not scroll (if it just disappeared from my page, which does not scroll).
To fix this, I used the following css
.modal { overflow-y:auto; max-height:90%; margin-top:-45%; }
This works exactly the way I want it in Chrome (i.e. the form is full size when the window is large enough, but as the window shrinks, the modal shrinks and becomes scrollable). The problem is that in IE the modal version is disabled. Does anyone have a better solution to this problem?
My example can be found at tinyhousemap.com (click "Add Entry to Map" in the navigation window to display modal text)
thank
css twitter-bootstrap
Dan dot net Mar 28 2018-12-12T00: 00Z
source share