Show vertical scrollbars?
overflow-y

Specify how to handle an element that has too much text to fit inside its determined height.
Property values
Use one of these keywords:
visible | The text simply overflows the bottom boundary and overruns whatever else is there. |
hidden | The text is clipped at the bottom boundary and is not visible. |
scroll | A vertical scrollbar is always visible, but is only enabled if the text is too high to fit. |
auto | If the text fits, no scrollbar is shown. If the text is too high to fit, the scrollbar is shown and enabled. |
Examples
overflow-y: scroll;