Say I have a group of elements that I want to apply pseudo classes to, is there a way to define muliple elements in a variable and then apply a pseudo class to all of them at once? Like so:
@inputs: input[type=text], input[type=email], input[type=password], textarea;
@inputs {
//some styles;
}
@inputs:focus{
//some focus-specific styles;
}
Apologies if this is too obvious, I am reletively new to LESS