Currently I am facing a big problem in equal height columns I have searched SO and i have found one solution. Apply the below css in the div (row) even after applying the below css it was no use when In the footer I have 5 Columns in the third column when I enter more data in the entire footer was getting increased but the first and second column was not increasing.
If you see the above image first two column and the last two where not in the equal height
.equal, .equal > div[class*='col-'] {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex:1 0 auto;
}
From the marked question only i have take the equal class but it was equal only with first two column but not with other column :(
Here is the fiddle
Thanks in advance