Skip to content

Instantly share code, notes, and snippets.

@joviczarko
Last active May 13, 2020 23:12
Show Gist options
  • Save joviczarko/86942403d9668ee1e455742a49864e05 to your computer and use it in GitHub Desktop.
Save joviczarko/86942403d9668ee1e455742a49864e05 to your computer and use it in GitHub Desktop.
Equal height of bootstrap 4 columns
.row.equalize {
display: flex;
flex-wrap: wrap;
}
.row.equalize > [class*="col-"] {
display: flex;
flex-direction: column;
}
// Usage: Just add class .equalize to the row you wish to be equalized in height of columns
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment