Skip to content

Instantly share code, notes, and snippets.

@tessalt
Created December 11, 2012 02:01
Show Gist options
  • Save tessalt/4255154 to your computer and use it in GitHub Desktop.
Save tessalt/4255154 to your computer and use it in GitHub Desktop.
extends
%clearfix {
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
%inline-block {
display: inline-block;
vertical-align: top;
}
%pseudo-content-after {
position: relative;
&:after {
content: " ";
position: absolute;
display: block;
}
}
%pseudo-content-before {
position: relative;
&:before {
content: " ";
position: absolute;
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment