Archive for the ‘overflow’ Category
How to show only Horizontal or Vertical Scroll bar in CSS
To show only horizontal or vertical scroll bar using css
overflow:auto;
overflow-x: hidden; this for vertical scrollbar
overflow-y:hidden; this for horizontal scrollbar
and may need to add
-ms-overflow-y or -ms-overflow-x:hidden; this for some IE browser
CSS, horizontal, vertical scroll bar