I have a css class like:
.foo { background-color: red; }
then I have a class specified for a list:
.list1 li { background-c
No. The best you can do with "native CSS" is to use a multiple selector:
.foo, .list1 li { ... }
Otherwise there are preprocessors that can help with this such as SASS.