According to the title, I tried to do it height:100% min-height:100%, etc., but that did not help.
The following of similar questions makes all columns equal heights, but I need the inner div to stretch 100% to fit the height of other columns on the same row.
[class*="col-"]{
margin-bottom: -99999px;
padding-bottom: 99999px;
background-color: red;
}
.row {
overflow: hidden;
}
Other columns contain images with a class img-responsive, so they are automatically resized to fit the viewport, and this div in the question will contain text and an image.
Here is JS Fiddle
source
share