xendi
xendi

Reputation: 2522

Make CSS/Javascript Modal Scrollable

I'm using the following fiddle to popup my Terms of Service but the content is way too long and goes far past the bottom of the page. I need to make it a certain size and scrollable (Should display on mobile as well): http://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_modal2

How can I modify this to be a certain size and scroll?

Upvotes: 0

Views: 101

Answers (1)

Give a height and an overflow-y to your modal body

.modal-body { height: 200px; overflow-y: scroll }

Upvotes: 1

Related Questions