Sass Notes Reusable mixins border-radius @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; border-radius: $radius; } Clearfix @mixin clearfix { &:after { content: ""; display: table; clear: both; } }