0
I have the problem of listing elements in my views, these elemntos should appear together with no white spaces that separate them. To solve this question I tried to use masonry, unsuccessfully, and I have no idea how to do this tidying up!
<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 is responsible for controlling the appearance of the elements in the views. Grateful for the attention!