CSS

Selectors

SelectorDescription
div spanSelect any span tag inside a div tag
div > aSelect any a tag that is a direct child of a div tag
div+aSelect any a tag that is immediately after a div tag
div,aSelect all a tags and all div tags
div a:first-childSelect the first a tag inside a div tag
tr:nth-child(2n+0)Select every other row of a table starting with the first row
tr:nth-child(3n+1)Select every 3rd row of a table starting with the second row
a:nth-of-type(4)Select every a tag that is the 4th element of its parent
a:nth-last-of-type(4)Select every a tag that is the 4th to last element of its parent
input:disabledSelect every input tag that is currently disabled
input[type=”checkbox”]:checkedSelect every checkbox that is currently checked
div:not(.fantastic)Select every div tag that doesn’t have the class fantastic
:not(h1)Select everything that’s not an h1 tag