Multiple @extends
.alert
border: 1px #f00
background-color: #eee
.criticalAlert
border-width: 3px
color: #8a0808
.greatGooglyMoogly
@extend .alert
@extend .criticalAlert
border-style: dashed
Oh snap! The roof is on fire!
.alert
border: 1px #f00
background-color: #eee
.criticalAlert
border-width: 3px
color: #8a0808
.greatGooglyMoogly
@extend .alert, .criticalAlert
border-style: dashed