How to change the color of Scroll Bar
Moderator: General Moderators
How to change the color of Scroll Bar
I am wondering how to change the color of scroll bar.
- twigletmac
- Her Royal Site Adminness
- Posts: 5371
- Joined: Tue Apr 23, 2002 2:21 am
- Location: Essex, UK
Code: Select all
<style>
body{
scrollbar-3dlight-color: #424242;
scrollbar-arrow-color: #D9B900;
scrollbar-darkshadow-color: #72767E;
scrollbar-face-color: #323641;
scrollbar-highlight-color: #C0C2C5;
scrollbar-shadow-color: #82868E;
scrollbar-track-color: #72767E;
}
</style>just did a google search of "scrollbar site:www.w3c.org" and the result showed nothing so the scrollbar property is not a standard, and what I know it only works in IE...
http://www.iota-six.co.uk/html/33_ie.htm
More interesting IE-only features...
More interesting IE-only features...
you could also use:
Code: Select all
<style>
body {
scrollbar-base-color: #ff3333;
}iframe's works well on my Mozilla FirebirdJAM wrote:http://www.iota-six.co.uk/html/33_ie.htm
More interesting IE-only features...
as of html 4.0 IFRAME is a standard
check this out http://www.w3.org/TR/REC-html40/present ... tml#h-16.5
check this out http://www.w3.org/TR/REC-html40/present ... tml#h-16.5
i think ti iframe was discussed elsewhere. netscape 4xx was previous to it's add, but due to it's ability to be used as an embedded element so you could have other stuff on the page, it's functionality was actually good enough to be added to the w3c standard, so as of netscape 6, and actually an earlier version of mozilla (i have 1.3.1 but a friend who only uses linux informed me they've had it since about 1.0) have supported it. opera also supports it (i think version 6 and up)