"scrollbar" attempts to match the scrollbar color for the OS, possibly the browser but i'm not sure. it seems to match the color of windows panel colors such as the taskbar and scrollbar of IE on w2ksp4
So a few questions.
1. If you have something like the code in your first post, do you want it to get each of the specified styles like font AND color in that example, or are you only trying to get color?
Ex:
Code:
.css {
color:#33FF44;
font: bold 10pt verdana, geneva;
}
Only pull the color: part, or the color: and the font: part?
2. How many style brackets are there going to be? Like only a css{} or will there be css{}css2{} etc?
Will it always be:
Code:
.css {
color:#33FF44;
font: bold 10pt verdana, geneva;
}
or can it sometimes be something like:
Code:
.css {
color:#33FF44;
font: bold 10pt verdana, geneva;
}
.css2 {
color:#FF0000;
font: 12pt arial, tahoma;
}
3. If there are multiple style brackets, are you trying to get what you want from each one, or do you want to specify which one(s) you pull the selected style from?
Ex. if you chose this in question 2:
Code:
.css {
color:#33FF44;
font: bold 10pt verdana, geneva;
}
.css2 {
color:#FF0000;
font: 12pt arial, tahoma;
}
Do you want to be able to pull what you want (which you chose in question1) from all sets there (css and css2) or do you want to be able to pick which one(s) you want to pull from?
Bookmarks