Created
January 27, 2016 19:38
-
-
Save mcbrwr/96b0b6bd9011f4faab82 to your computer and use it in GitHub Desktop.
Bootstrap 3 - clear columns
This file contains 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
.row { | |
> .col-sm-4 { | |
@media screen and (min-width: @screen-sm-min){ | |
&:nth-child(3n + 1) { | |
clear: left; | |
} | |
} | |
} | |
> .col-sm-3 { | |
@media screen and (min-width: @screen-sm-min){ | |
&:nth-child(4n + 1) { | |
clear: left; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment