Skip to content

Instantly share code, notes, and snippets.

@sdempsey
Created September 10, 2015 14:20
Show Gist options
  • Save sdempsey/077d94126b233404b481 to your computer and use it in GitHub Desktop.
Save sdempsey/077d94126b233404b481 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@mixin ib-va($alignment: middle) {
display: inline-block;
vertical-align: $alignment;
}
.ib-mid {
@include ib-va; //default
}
.ib-baseline {
@include ib-va(baseline);
}
.ib-top {
@include ib-va(top);
}
.ib-mid {
display: inline-block;
vertical-align: middle;
}
.ib-baseline {
display: inline-block;
vertical-align: baseline;
}
.ib-top {
display: inline-block;
vertical-align: top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment