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

Categories

0 votes
477 views
in Technique[技术] by (71.8m points)

html - CSS to untarget certain element?

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

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

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...