PDA

Click to See Complete Forum and Search --> : Why is it possible, in a CSS, to alter the props of a scrollbar...but not a combobox!


Wokawidget
Jul 8th, 2003, 11:24 AM
using:

BODY, SELECT
{
scrollbar-face-color:red;
scrollbar-shadow-color: Maroon;
scrollbar-highlight-color: #FF7F50;
scrollbar-3dlight-color:pink;
scrollbar-darkshadow-color:darkgreen;
scrollbar-track-color: green;
scrollbar-arrow-color: white;
}

so...why can't you do anything like this with a combo???

Woka

The Hobo
Jul 8th, 2003, 03:42 PM
Probably because it is not supported?

CornedBee
Jul 9th, 2003, 01:51 AM
Because MS didn't create proprietary tags for comboboxes?

Travis G
Jul 10th, 2003, 12:54 PM
[QUOTE]Originally posted by Wokawidget

BODY, SELECT
{
scrollbar-face-color:red;
scrollbar-shadow-color: Maroon;
scrollbar-highlight-color: #FF7F50;
scrollbar-3dlight-color:pink;
scrollbar-darkshadow-color:darkgreen;
scrollbar-track-color: green;
scrollbar-arrow-color: white;
}


I wanted to point out that this is not CSS. What you have here is MS proprietary style elements, but not CSS.

If you directly affect these, you will undermind accessibility. The civilized world understands this. MS will eventually decide that there can be no variation in its user base, and accessibility will not be an issue.

CornedBee
Jul 11th, 2003, 04:58 AM
Actually it is CSS. It just isn't valid CSS1 2 or 3. But it is valid CSS MS-version.

Wokawidget
Jul 11th, 2003, 05:04 AM
So how would you change the style/appearance of a combo box???

Woka

The Hobo
Jul 11th, 2003, 11:48 AM
You can't. Not the scrollbars.