Comma-separated list

ul > li:not(:last-child):after { 
  content: “, “; 
}
<ul>
  <li>First item</li>
  <li>Second item</li>
  <li>Third item</li>
</ul>
Image for post

Image for post