I'm trying to output html anchors inside a fixed width container. When using angular's ng-repeat the links overflow outside of the container. Below is the code snippet for ng-repeat. Refer to the jsfiddle for an example of the overflow.
http://jsfiddle.net/n1Lkybwf/2/
<div style="width: 200px; padding: 5px; border: solid 3px #000;">
<a ng-repeat="tag in tags" style="margin-right: 5px;">{{tag}}</a>
</div>
display:inline-blockto the links.