Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

No support for selector lists / grouping selectors in css?

Is there really no support for selector lists in CSS? It's not explicitly mentioned in the CSS Guide.

I tried it on several places in my css and it always damages my whole design.

For example...this is not working:

.time,
.timeAod {
  fill: white;
  width: 57;
  height: 93;
}

 

But this is:

.time {
  fill: white;
  width: 57;
  height: 93;
}
.timeAod {
  fill: white;
  width: 57;
  height: 93;
}

 

Best Answer
0 Votes
1 REPLY 1

Nope, unfortunately not. Perhaps you could workaround using "class" in svg.

You could use multiple (style-) classes on one element if necessary.

Best Answer
0 Votes