Last active
May 13, 2020 23:12
-
-
Save joviczarko/86942403d9668ee1e455742a49864e05 to your computer and use it in GitHub Desktop.
Equal height of bootstrap 4 columns
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.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