Skip to content

Instantly share code, notes, and snippets.

@aswebdev
Created October 1, 2014 07:34
Show Gist options
  • Save aswebdev/fd008cf764f243800f4e to your computer and use it in GitHub Desktop.
Save aswebdev/fd008cf764f243800f4e to your computer and use it in GitHub Desktop.
h1 paragraph selector
// Selecting all p that are next siblings of h1:
h1 + p { ... }
// Selecting all h1 that are *previous* siblings of p:
h1:has(+ p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment