Point one style class to another?

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

    The above solutions aren't available if you don't have control over how 'foo' was defined.

    So, if a JQuery solution is acceptable, just apply the original class to all instances of the new class/context. In this case:

    $('.list li').addClass('foo')
    

提交回复
热议问题