Created
June 8, 2014 08:47
-
-
Save babsgosgens/f1505a862d909a04936e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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