I am facing an issue with my div container (mapInfo-Container) which contains multiple div blocks. I want the container to have a fixed height of 250px, and be scrollable for any content exceeding this height.
Here is the code snippet: http://jsfiddle.net/dtjmsy/mxt32057/11/
.mapInfo-Container {
height: 250px;
//overflow-y: scroll;
}
I have tried using overflow-y: scroll; but it does not seem to work as expected. I believe I might be missing something. Can you please assist me with this?
Thank you in advance.