CSS margin-top exception

User
category-parent-group

add margin-top:10px , but not on first child !

Assistant
To add `margin-top: 10px` to all `.category-parent-group` elements **except the first one**, you can use the `:not(:first-child)` pseudo-class in CSS:

.category-parent-group:not(:first-child) {
  margin-top: 10px;
}

This will apply the margin to every `.category-parent-group` except the first one.

> ✅ No need for extra classes or JavaScript—pure CSS handles this efficiently.

Leave a Comment

Your email address will not be published. Required fields are marked *