Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Created June 8, 2014 08:47
Show Gist options
  • Save babsgosgens/f1505a862d909a04936e to your computer and use it in GitHub Desktop.
Save babsgosgens/f1505a862d909a04936e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
$old-ie: false;
@mixin old-ie() {
@if $old-ie {
@content;
}
}
@mixin inline-block($alignment) {
display: inline-block;
@include old-ie() {
$alignment: unquote($alignment);
vertical-align: #{$alignment};
}
}
// In modern stylesheet
.column {
@include inline-block("top");
}
$old-ie: true;
// In IE stylesheet
.column {
@include inline-block("top");
}
.column {
display: inline-block;
}
.column {
display: inline-block;
vertical-align: top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment