This repository was archived by the owner on Aug 4, 2019. It is now read-only.
This repository was archived by the owner on Aug 4, 2019. It is now read-only.
Mixin for: adding property to element but zeroing that property on last child. #10
Open
Description
This is often done (for example, to add space between inline-block or floated elements but to prevent the last from having orphaned space)
element
margin-right: 3px
&:last-child
margin-right: 0
Looking to replace that with something like:
element
@include all-but-last-child(margin-right, 3px)