1

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>
Paul Kononenko
  • 9,407
  • 4
  • 18
  • 13

1 Answers1

0

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;
Bertrand
  • 13,540
  • 5
  • 39
  • 48