Skip to content

Instantly share code, notes, and snippets.

@quattromani
Created May 8, 2014 03:36
Show Gist options
  • Save quattromani/23418269d0230da1c6d0 to your computer and use it in GitHub Desktop.
Save quattromani/23418269d0230da1c6d0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
// Inline-Block IE
/* Using a mixin */
@mixin inline-block {
display: inline-block;
*zoom: 1;
*display: inline;
}
.box {
@include inline-block;
}
// Inline-Block IE
/* Using a placeholder */
%inline-block {
display: inline-block;
*zoom: 1;
*display: inline;
}
.box {
@extend %inline-block;
}
/* Using a mixin */
.box {
display: inline-block;
*zoom: 1;
*display: inline;
}
/* Using a placeholder */
.box {
display: inline-block;
*zoom: 1;
*display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment