I'm currently using Bootstrap 4 with flexbox enabled, but I'm having trouble making the row > col > div boxes have equal heights.
I attempted to use position: absolute
, but it's not the ideal solution.
Below is a screenshot of the issue:
https://i.sstatic.net/aXMKY.png
<div class="row" >
<div class="col-xs-12" >
<div class="home_category" ></div>
</div>
<div class="col-xs-12" >
<div class="home_category" ></div>
</div>
</div>
Although the height of col-xs-12
remains consistent, the height of .home_category
varies depending on the content size.
I am in search of a solution to ensure that .home_category
has 100% height, matching col-xs-12
.
You can view a live demo of the issue at
Your feedback would be greatly appreciated.