Keyboard shortcuts

Press ← or β†’ to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

nthPlusSpacing

Control whether there should be spaces around the + or - operator in β€œAn+B” selector syntax.

Default value is false.

Example for false

Playground

:nth-child(2n+1) {}
:nth-child(2n-1) {}

Example for true

Playground

:nth-child(2n + 1) {}
:nth-child(2n - 1) {}