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

后端 未结 3 440
余生分开走
余生分开走 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:45

    .outer > h2 { color:red; }
    

    this way only the direct child of the outer div get this color value, should fix the job.

提交回复
热议问题