I'm trying to display a list of names, separated by a comma, using CSS:
a:after {
content: ', \00a0';
display: inline-block;
text-decoration: none;
}
<a href="foo.com">Foo</a>
<a href="bar.com">Bar</a>
The problem is that the result looks something like this:
Foo, Baz
, Bar