You can specify the overflow attribute, as follows:
This will display a vertical scrollbar when the content in the specified div exceeds the 200px specified height.
(I hope this make sense)
Quote:
<style type="text/css">
.scrollableArea
{
height: 200px;
overflow-y: scroll;
}
</style>
|