Very often, it\'s natural to need to specify a CSS style for all elements except the first (or the last). For example, when styling paragraphs, you wish to add a bottom marg
I would suggest to use first-of-type:
first-of-type
p:not(:first-of-type) { ... }
Browser support (caniuse)