Skip to content

Instantly share code, notes, and snippets.

@carolina-vallejo
Last active October 29, 2017 12:36
Show Gist options
  • Save carolina-vallejo/127e6ca690f2d3263047f07215ae34d7 to your computer and use it in GitHub Desktop.
Save carolina-vallejo/127e6ca690f2d3263047f07215ae34d7 to your computer and use it in GitHub Desktop.
clear mixin sass
@mixin clean {
&::after,
&::before {
content: "";
display: table;
}
&::after {
clear: both;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment