Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shayhowe/7664574 to your computer and use it in GitHub Desktop.
Save shayhowe/7664574 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.row
.one
words
.two
words
.three
words
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
%spacing
width: 20%
background-color: orange
height: 100px
display: inline-block
letter-spacing: 0
.row
letter-spacing: -.31em
.one
@extend %spacing
.two
@extend %spacing
.three
@extend %spacing
.one, .two, .three {
width: 20%;
background-color: orange;
height: 100px;
display: inline-block;
letter-spacing: 0;
}
.row {
letter-spacing: -0.31em;
}
<div class='row'>
<div class='one'>
words
</div>
<div class='two'>
words
</div>
<div class='three'>
words
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment