I have a problem with letter-spacing for my inline-block elements. As you see there(jsfiddle) my lower elems are collapse, because they are not separate with '\n' or gap. If I repeat that with Angular, I have collapse elems. How can I fix this problem?
<a ng-repeat="menu in menus"">{{menu.name}}</a>
If you just want to put some spacing after each element, just add this line to your css, inside you ".parent a" selector. Here is your fiddle
margin-left: 10px;