Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created September 15, 2015 21:44
Show Gist options
  • Save wrumsby/63f43e84842d75b240b1 to your computer and use it in GitHub Desktop.
Save wrumsby/63f43e84842d75b240b1 to your computer and use it in GitHub Desktop.
nth-child(n)
/**
* nth-child(n)
*/
body {
}
div {
margin: 10px;
border: 1px solid blue;
padding: 10px;
}
.outer > *:nth-child(n) {
border: 1px solid red;
}
<!-- content to be placed inside <body>…</body> -->
<div class="outer">
<div>
<div>
<div></div>
</div>
</div>
<div>
<div>
<div></div>
</div>
</div>
</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment