I am using ng-repeat to iterate through elements
<div class="description-block" style="text-align: left; margin: 0px">
<span class="description-text">Targets: </span>
<span ng-repeat="target in obj.targets" class="label label-danger">{{target}}</span>
</div><!-- /.description-block -->
However, the elements are extending beyond the div
Here is a visual representation of the issue: https://i.sstatic.net/Xb6fX.jpg
What steps can I take to resolve this problem?