I'm having the problem of listing elements in my views, these elemntos should appear together with no blanks to separate them. To solve this issue I tried to use masonry, without success, and I have no idea how to make this arrangement!
<div id="services">
<div class="box" ng-repeat="service in services">
<div class="col-5">
<a class="service-card" href="{{ service.url }}">
<h3>{{service.name}}</h3>
<p ng-bind-html="service.description | limitTo:150 " ><p>{{service.description.length >= 150 ? "..." : " "}}</p><p class="btn">ver mais</p></p>
<span ng-repeat="category in service.categories">{{ category.name }}.</span>
</a>
</div>
</div>
</div>
This code snippet that is responsible for controlling the appearance of elements in views. Thank you for your attention!