Show horizontal scrollbars?
overflow-x

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