How do I select an element only when inside another element?

前端 未结 3 2041
攒了一身酷
攒了一身酷 2020-12-01 16:04

I have a question regarding CSS selectors. How do I select a

with a specific class name only when its inside a
    with a class
3条回答
  •  隐瞒了意图╮
    2020-12-01 16:14

    you can easily select a div with a specific class name only when its inside a UL with a class name saft like mentioned below css :-

    ul.saft .textSlide {
    color:red;
    }
    

    or see the demo :- http://tinkerbin.com/mcrh7iMq

提交回复
热议问题