Created
January 26, 2017 16:00
-
-
Save electerious/3e3a234e589b50d7fb1df2ee9b6471ca to your computer and use it in GitHub Desktop.
SASS clearfix placeholder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%clearfix { | |
&::before, | |
&::after { | |
content: ' '; | |
display: table; | |
} | |
&::after { | |
clear: both; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment