Reputation: 2141
BODY
{
SCROLLBAR-FACE-COLOR: #e9e9e9;
SCROLLBAR-HIGHLIGHT-COLOR: #1679aa;
SCROLLBAR-SHADOW-COLOR: #1679aa;
SCROLLBAR-DLIGHT-COLOR: #cccccc;
SCROLLBAR-ARROW-COLOR: #1679aa;
SCROLLBAR-TRACK-COLOR: #dee3e7;
SCROLLBAR-DARKSHADOW-COLOR: #03276e;
}
I tried to run a web application in visual studio 2008... The above CSS file creates err. 'SCROLLBAR-FACE-COLOR not a know CSS property name' I got the err for all the scroll bar properties above... How should I proceed?
Upvotes: 0
Views: 2153
Reputation: 2550
Scrollbar is not a valid CSS property. You should delete those declarations from your CSS file. Other thing is that not every browsers can interpret it. As I know only Internet Explorer and Opera can.
So just delete them :)
Upvotes: 0
Reputation: 723518
Don't do it. There's no point to doing this since:
Upvotes: 2
Reputation: 186562
IMO, you shouldn't ever modify the scrollbar styles as it's intrusive and no one else really does it.
Your OS should be rendering it. In addition, it's non-standard and some browsers might not even support it.
Upvotes: 1