I have div cards like feedly, I want that the behavior be the same.
In this momento I have this:
I'd want this:
My code is this:
<div ng-repeat="obj in list" class="col-md-4 col-sm-4 col-xs-12">
<div class="col-md-12 col-sm-12 col-xs-12">
<img src="{{obj.image}}" class="col-md-12 col-sm-12 col-xs-12">
<strong class="col-md-12">{{obj.name}}</strong>
<p class="col-md-12">{{obj.summary}}</p>
<p class="col-md-12">{{obj.cel}}</p>
</div>
</div>
Note: I can't put height fixed.
Thanks!