Point one style class to another?

前端 未结 10 1368
遇见更好的自我
遇见更好的自我 2021-02-04 23:59

I have a css class like:

.foo {
  background-color: red;
}

then I have a class specified for a list:

.list1 li {
  background-c         


        
10条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-05 00:36

    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.

提交回复
热议问题