Answers for "nth child css except first"

CSS
2

css select all except first

element *:not(:first-child) /* Selects all but first element */
Posted by: Guest on May-02-2021
0

css nth child skip first

p:not(:first-child) { color: red; }
Posted by: Guest on May-28-2020

Browse Popular Code Answers by Language