06-12-2022 12:20
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

06-12-2022 12:20
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
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;
}

06-12-2022 12:54 - edited 06-12-2022 12:57
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

SunsetRunner
06-12-2022 12:54 - edited 06-12-2022 12:57
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Nope, unfortunately not. Perhaps you could workaround using "class" in svg.
You could use multiple (style-) classes on one element if necessary.

