Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created June 13, 2013 17:54
Show Gist options
  • Save DrewAPicture/5775820 to your computer and use it in GitHub Desktop.
Save DrewAPicture/5775820 to your computer and use it in GitHub Desktop.
Working with this list of footer links (it's coming from a wp_nav_menu() call), I need to select only the first href inside the first list item.
<nav>
<div>
<ul>
<li>
<a href="#">First</a>
</li>
<li>
<a href="#">Second</a>
</li>
<li>
<a href="#">Third</a>
</li>
</ul>
</div>
</nav>
@DrewAPicture
Copy link
Author

li:first-child a

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment