Hi everyone !
I was wondering if there was a way to group the following nth-child
into a single class (theme) ?
From my understanding they are already classes on their own but maybe there is a way to put multiple classes into one class ?
.value:nth-child(1) {
background-color: red;
}
.value:nth-child(2) {
background-color: pink;
}
.value:nth-child(3) {
background-color: purple;
}
I'm thinking of something that would be written that way in the css field after (which is of course 100% wrong):
class: .value:nth-child(1), .value:nth-child(2), .value:nth-child(3)
Swayrian