http://csscreator.com/node/29717 I have found these page on google ,to disable vertical or horizontal scroll bar.
user used overflow-y: scroll ! important; overflow-x: hidden ! important;
It even worked these way
overflow-y:scroll; overflow-x:hidden;
I was wondering why did he go for these (‘! important’) after the scroll or hidden values.Is there any harm if i dont use (‘! important’) ? or is it fine ? Could you tell me why did he use ! important after the scroll or hidden.
!importantis a keyword.It is often used to use “browsers quirks” to make the same html page compatible with the most important browsers, to circumvent bugs (most notably, with internet explorer).
http://en.wikipedia.org/wiki/CSS_filter#.21important_quirks
http://webdesign.about.com/od/css/f/blcssfaqimportn.htm
http://www.electrictoolbox.com/using-important-css/