I’m looking for a way to style an unordered list in XHTML with CSS such that it is rendered inline and the list items are separated by commas.
For example, the follo
Replace one your rule
#taglist li:after { content: ", "; }
with just another one
#taglist li + li:before { content: ", "; }
Pros: