Tuesday, February 10, 2009

Remove / Hide Scroll Bars

To hide inactive scroll bars set...
overflow: auto;
(When need - will appear)

To hide permanent...
overflow: hidden;

To show...
overflow: scroll;

By this way to hide scroll bar for window use this css...
html, body { overflow: hidden; }


Refer this...
http://www.brunildo.org/test/Overflowxy2.html

Enjoy!