The following div is not stretching, so vertical line is not increase in height.
<div style="border-left: thick solid #000;margin-left:20px; height:100%;">
Test2
</div>
Following same code works fine in IE and FF, but not in Chrome.
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css');
.row-eq-height {
display: -webkit-box !important;
display: -webkit-flex !important;
display: -ms-flexbox !important;
display: flex !important;
}
<div class="row row-eq-height" style="backgroud:pink">
<div class="col-md-12" style="background:yellow">
Test1<br />
Test1<br />
Test1<br />
Test1
</div>
<div class="col-md-2" style="background:red">
<div style="border-left: thick solid #000;margin-left:20px; height:100%;">
Test2
</div>
</div>
</div>
Any ideas on to fix this?