by pietman
28. October 2008 15:28
To force e.g. a horizontal scrollbar with CSS, use the following CSS code:
overflow-y: scroll;
to force vertical scrollbar use the following CSS code:
overflow-x: scroll;
to force them both off:
overflow-y: none;
overflow-x: none;