Selector pseudo-class :nth-child(n)

p:nth-child(2)

Selects every

element that is the second
child of its parent

Example

td:nth-child(4) {
  text-align: justify;
}