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