I am investigating the concept of element grouping in CSS. Consider the following code snippet:
.user-form .group-area .test, .user-form .group-area .test2{}
Is it possible to group .test and .test2 elements together like this:
.user-form .group-area (.test .test2){}
This would mean that the same style would apply to both .test and .test2 elements without having to repeat .user-form .group-area a second time.