Skip to content

Instantly share code, notes, and snippets.

@artemsheludko
Last active July 25, 2018 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artemsheludko/c6d713b44f72d4f8185e28fd9563a62d to your computer and use it in GitHub Desktop.
Save artemsheludko/c6d713b44f72d4f8185e28fd9563a62d to your computer and use it in GitHub Desktop.
<ul>
<li><a href="">First item</a></li>
<li>Second item</li>
<li><a href="">Test</a></li>
<li><a href="">Test</a></li>
<li><a href="">Pre-last item</a></li>
<li><a href="">Last item</a></li>
</ul>
// To choose the last two LI elements you do (выбрать последнии два эмеленты из списка):
ul > li:nth-last-of-type(-n+2) {
background: green;
}
// To choose the first two LI elements you do (выбрать первые два эмеленты из списка):
ul > li:nth-child(-n+2) {
background: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment