Example of a Vertically Scrollable Div
How to make a div vertically scrollable so you can have a fixed size Div and hide text that is longer than your allowed Div.
The following is an example of a scrollable div hiding any text larger than the allowed div. This is helpful when you do not want to pass the size limit of a div.
Here is the CSS for the Scrollable Div
.scroll{
height: 250px;
width: 300px;
overflow-y:scroll;
}