I am making a very advanced website. My question: Is it possible to select all the other children except for the :first-child and the :last-child? I kn
:first-child
:last-child
Try:
#navigation ul li:not(:first-child):not(:last-child) { ... }