How to apply CSS to only immediate children of a certain class

后端 未结 3 426
余生分开走
余生分开走 2020-12-11 00:24

I have a div and in that div I want to create another div with a different class and have the inner div completely separa

3条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-11 00:50

    .outer .inner * { color: #000; }
    

    sets all elements within the inner container as having the color black.

    Demo here

提交回复
热议问题