tags:

views:

46

answers:

2

How to set overflow scroll without the bottom scroll. I only need to show the side scroll for the wrapper of the content.

regards - dj

+2  A: 

This will show only vertical scrollbar.

#element {
    overflow: auto;
}

OR:

overflow-x:hidden;
overflow-y:auto;
Māris Kiseļovs
Thank u.. U r so fast :)
Dijo David
+1  A: 

Some browsers support

overflow-x: visible|hidden|auto|scroll;
overflow-y: visible|hidden|auto|scroll;
Rafael