I have obtained a great function string from this forum that lists my CSS elements as functions (see end of post); BUT, now I'm wondering, if anyone has managed to separate out the different elements as separate functions in the list.
for instance, say I have two classes that share a property:
I'd like these to appear in the list as such (set to sort):
.blue
.blue
.red
.red
Granted, I will multiples, but at least it will be evident to me that I have multiples. Also..., my example is rather simplified. For a long and complicated CSS file, it makes a lot of sense.
Current /Function String = "%^([a-zA-Z_0-9 ,#^*.^[^]^+>=:^-]++^){"
Cheers,
Liz
for instance, say I have two classes that share a property:
Code: Select all
.blue, .red {
font-weight: bold;
}
.blue {
color: #0000FF;
}
.red {
color: #FF0000;
}
.blue
.blue
.red
.red
Granted, I will multiples, but at least it will be evident to me that I have multiples. Also..., my example is rather simplified. For a long and complicated CSS file, it makes a lot of sense.
Current /Function String = "%^([a-zA-Z_0-9 ,#^*.^[^]^+>=:^-]++^){"
Cheers,
Liz