Last active
January 21, 2019 09:23
-
-
Save victory-sokolov/763b1e06def41e2dd44a7bade7b00191 to your computer and use it in GitHub Desktop.
Equal Height
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
.row { | |
display: -webkit-box; | |
display: -webkit-flex; | |
display: -ms-flexbox; | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.row > [class*='col-'] { | |
display: flex; | |
flex-direction: column; | |
} | |
.parent-class { | |
flex: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment