Skip to content

Instantly share code, notes, and snippets.

@tdwesten
Forked from drocarmo/clearfix.scss
Created November 6, 2014 07:43
Show Gist options
  • Save tdwesten/37c5dba332968270e20e to your computer and use it in GitHub Desktop.
Save tdwesten/37c5dba332968270e20e to your computer and use it in GitHub Desktop.
Clearfix elements via SCSS mixin
@mixin clearfix {
&:after {
content:"";
display:table;
clear:both;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment