On gists
OWL selector + last child
•
CSS
CSS trick
@see: https://alistapart.com/article/axiomatic-css-and-lobotomized-owls
ow-selector.scss
Raw
#
* + * {
margin-top: 1.5em;
}
.module > *:last-child,
.module > *:last-child > *:last-child,
.module > *:last-child > *:last-child > *:last-child {
margin: 0;
}