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!
Showing posts with label scrollbar. Show all posts
Showing posts with label scrollbar. Show all posts
Tuesday, February 10, 2009
Friday, April 25, 2008
Change the colour of scrollbars using css
This code will change the color or scroll bar of the window:
body {
scrollbar-3dlight-color:#ffd700;
scrollbar-arrow-color:#ff0;
scrollbar-base-color:#ff6347;
scrollbar-darkshadow-color:#ffa500;
scrollbar-face-color:#008080;
scrollbar-highlight-color:#ff69b4;
scrollbar-shadow-color:#f0f
}

Will work in IE, but not in FF.
From:
http://websitetips.com/articles/css/scrollbars/
body {
scrollbar-3dlight-color:#ffd700;
scrollbar-arrow-color:#ff0;
scrollbar-base-color:#ff6347;
scrollbar-darkshadow-color:#ffa500;
scrollbar-face-color:#008080;
scrollbar-highlight-color:#ff69b4;
scrollbar-shadow-color:#f0f
}
Will work in IE, but not in FF.
From:
http://websitetips.com/articles/css/scrollbars/
Subscribe to:
Posts (Atom)