:lt() selector

Select all elements at an index less than index within the matched set. index-related

2016-03-27 13:48:43
:empty selector

Select all elements that have no children (including text nodes). This is the inverse of :parent

2016-03-27 13:48:14
:selected selector

Selects all elements that are selected. The :selected selector works for <option>

2016-03-27 13:49:03
:nth-last-of-type() selector

Selects all the elements that are the nth-child of their parent in relation to siblings with the same element name, counting from the last element to the first.

2016-03-27 13:48:52
:only-child selector

Selects all elements that are the only child of their parent. If the parent has other child elements

2016-03-27 13:48:52
Attribute starts with selector [name^=”value”]

Selects elements that have the specified attribute with a value beginning exactly with a given string. This

2016-03-27 13:48:00
Attribute contains prefix selector [name|=”value”]

Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).

2016-03-27 13:47:59
:even selector

Selects even elements, zero-indexed. See also odd. In particular, note that the 0-based indexing

2016-03-27 13:48:13
:only-of-type selector

Selects all elements that have no siblings with the same element name. If the parent has other child

2016-03-27 13:48:54
Child selector (“parent > child”)

Selects all direct child elements specified by "child" of elements specified by "parent". As a CSS

2016-03-27 13:48:06