I'm, like, really anxious for people to post more comments so I can see more of the new "x comments by name1, name2 and name3" commentlink-syntax in action... That "and" makes the link look so much more interesting, as if name1 and name2 are really having a discussion with name3 and each other.
It should give something like:
.commentatorList ul
{
display:inline;
}
.commentatorList li
{
list-style:none;
float:left;
}
.commentatorList li:before
{
content: ", ";
}
.commentatorList li:first-child:before
{
content: "";
}
.commentatorList li:last-child:before
{
content: "\00a0 and ";
}
<div class="commentatorList">
<ul>
<li>donald</li>
<li>riri</li>
<li>fifi</li>
<li>loulou</li>
</ul>
</div>
Ok, it's useless but I had some time to waste :p
I'd use it in an instant if it wasn't for all those Internet Explorer users whom I'd like to show a neat commentatorlist too.