When utilizing angular's ng-repeat to display a div multiple times, I noticed that the styling was not appearing correctly for the last child. To address this issue, I attempted to apply specific styling to the last-child of the ng-repeat element as shown below:
.link-tickets div:last-child{
float:left;
}
<div class="medium-4 column no-pad-left link-tickets" ng-repeat="ticket_data in acct_details.tickets">
<p><a href="#details/{{acct_details.client_id}}/ticket/{{ticket_data.ticket_id}}"><strong class="bold-color">{{acct_details.client_name}}</strong></a>
<br>{{available_stages[ticket_data.stage_id].stage_name}}
<br>{{ticket_data.created_at | format | date}}</p>
</div>
Could you please provide insight into what might be causing the issue?