Question:
I’m trying to style all tbody tags except the first one but with poor results.As you can see in the snippet, the style is applied to all elements, including the first one, where am I wrong?
Answer:
Try usingtbody.divider:not(:first-of-type)
.The :first-of-type selector matches every element that is the first child, of a particular type, of its parent.
Reference : https://www.w3schools.com/cssref/sel_first-of-type.asp https://www.w3schools.com/cssref/css_selectors.asp
Try it below.
If you have better answer, please add a comment about this, thank you!