I'm trying to vertically stack items on a bootstrap grid, but they're not stacking up correctly. Instead, it adds 4-5 items together to one row and breaks for next row. Is there anything bootstrap-native that can fix this? Or do I need some other workaround?
<div id="result-container" class="row">
<div class="item col-xs-3" style="height:220px">Item</div>
<div class="item col-xs-3" style="height:320px">Item</div>
<div class="item col-xs-3" style="height:270px">Item</div>
...
</div>
See jsFiddle.