Skip to content

Instantly share code, notes, and snippets.

@dengsauve
Created April 12, 2018 18:18
Show Gist options
  • Save dengsauve/404b1ac3ef4542caa5efa2c38ee0014b to your computer and use it in GitHub Desktop.
Save dengsauve/404b1ac3ef4542caa5efa2c38ee0014b to your computer and use it in GitHub Desktop.
Bootstrap Panels Equal Height in Row
@media screen and (min-width: 768px) {
/* Class defining .panel container row */
.panel-uniform-height {
display: flex;
}
/* Regardless of content, panels will of be equal height */
.panel-uniform-height .panel{
height: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment