A CSS solution to getting the same height Bootstrap columns can be nice when you have different background colors or such.
Here are two different approaches
Method 1:
.your-div{
.row{
overflow: hidden;
}
[class*="col-"]{
margin-bottom: -99999px;
padding-bottom: 99999px;
}
}
Related External Links: