Skip to content

Instantly share code, notes, and snippets.

@imlinus
Created November 22, 2013 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imlinus/7599064 to your computer and use it in GitHub Desktop.
Save imlinus/7599064 to your computer and use it in GitHub Desktop.
inline-block mixin/placeholder
@mixin inl-block {
display: -moz-inline-stack;
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
zoom: 1;
*display: inline;
}
%inline-block {
@include inl-block;
}
// usage
.menu-item a,
.menu-item a:visited {
width: inherit;
padding: 0 10px;
background: red;
@extend %inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment