Point one style class to another?

前端 未结 10 1383
遇见更好的自我
遇见更好的自我 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:38

    No you can't but you override it using naming differnt classes for example

    .foo {
      background-color: red;
    }
    .list1 li {
       background-color: tan;
    }
    
    class ="list1 foo"
    

提交回复
热议问题