Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

What is the correct selector to un-target a div inside a div based on position that is un-target 1st child div or 2nd child, and so on.

For example,

<div class="myclass">
 <div>1st
   <div>Child of 1st</div>
 </div>

 <div>2nd</div>
 <div>3rd</div>
</div>

If I want class myclass not to apply to nth child of 1st?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
483 views
Welcome To Ask or Share your Answers For Others

1 Answer

You probably could have googled this first. Select n-th child:

    div > div:nth-child(2) {
        background: red;
    }

Unselect n-th child:

    div > div:not(:nth-child(2)) {
        background: red;
    }

JS Fiddle: https://jsfiddle.net/uk0vnycw/

http://www.w3schools.com/cssref/sel_nth-child.asp


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...