I am currently dealing with an array of objects that I need to showcase in a two-column layout. The challenge arises because some columns have more data than others, requiring equi-height rows.
Despite utilizing Bootstrap and clearfix in my attempts to display the data, I have not been able to achieve equi-height rows.
<ng-include src="itemTemplateSrc" ng-repeat-start="tag in item.fields | filter:filterTagsByTagName" class="col-md-12"></ng-include>
<div class="clearfix" ng-if="$index%2===1"></div>
<div ng-repeat-end=""></div>
My goal now is to present the data in HTML using a two-column layout without splitting the array due to additional filters.
How can I effectively showcase the data from a single object array in an HTML table?