We have a
overflow css property through which we can show scroll bars as
horizontal and vertical .It has
x and y attributes where
x means horizontal and y means vertical .
If we want to show only horizontal scroll bar,then we have to specify
auto for x attribute and hidden for y as shown:-
.horizontal_scrollbar_only
{
overflow-x: auto;
overflow-y: hidden;
}