To achieve this scrollbar property we have to set verflow property of css to "visible" or "auto".
Example: .scrollbar
{
overflow: auto; /*for horizontal and vertical scroll bars */
}
/* or you can set scrolling in x and y direction */
.scrollbarxy
{
overflow-x: auto; /*for horizontal scroll bar */
overflow-y: auto; /*for vertical scroll bar */
}
Note: In the place of auto , if we specify none, then it will not show scrollbar on that direction