Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created March 10, 2014 20:48
Show Gist options
  • Save zastrow/9474007 to your computer and use it in GitHub Desktop.
Save zastrow/9474007 to your computer and use it in GitHub Desktop.
Common Mixins
@mixin inline($val) {
display: inline-block;
vertical-align: $val;
.lt-ie8 & {
display: inline;
zoom: 1;
}
}
@mixin ratio($h,$w) {
$val: ( $h / $w ) * 100%;
&:after {
display:block;
content:'';
padding-top:$val;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment