Created
October 25, 2017 15:43
-
-
Save emarket-design/7d070139a36062d6068a71e8fda0ae37 to your computer and use it in GitHub Desktop.
Flexbox approach to equal heights
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.display-flex { | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.row.display-flex > [class*='col-'] { | |
display: flex; | |
flex-direction: column; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment