is there a way to group multiple selector like this:
[data-my-attribute]{
.prop1{}
.prop2{}
.prop3{}
}
the @media is a kind of grouping. But i want it only to work on some specific children. I'm not interested in the .class1, .class2, .class3{} syntax
is there any way i can combine a @media and [data-] ?
The thing is that in this case, i dont have controlle over .prop1,2,3.. since they come from other people. I need a way to group them.
I tried several google searches with no luck.
Can it be done? :)