Add padding to the top of all lis in a list except the first li

PHOTO EMBED

Thu Jun 17 2021 12:02:43 GMT+0000 (Coordinated Universal Time)

Saved by @hisam #css

.top * + * {
  margin-top: 1.5em;
}
content_copyCOPY

This targets only the child elements of .top that are siblings of other child elements, so the first li won't be targeted.