Skip to content

Instantly share code, notes, and snippets.

@icetee
Created March 28, 2019 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icetee/d9efde197f7ccaadbcc1864c4679a3a6 to your computer and use it in GitHub Desktop.
Save icetee/d9efde197f7ccaadbcc1864c4679a3a6 to your computer and use it in GitHub Desktop.
Bootstrap grid col same height
.row {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
flex-wrap: wrap;
}
.row > [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