Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Last active January 21, 2019 09:23
Show Gist options
  • Save victory-sokolov/763b1e06def41e2dd44a7bade7b00191 to your computer and use it in GitHub Desktop.
Save victory-sokolov/763b1e06def41e2dd44a7bade7b00191 to your computer and use it in GitHub Desktop.
Equal Height
.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