Separate your html list elements with back slashes, commas, dots or whatever icon pleases you by using CSS.
1 2 3 4 |
li:nth-child(n+1):before { content: ", "; } li:first-child:before {content: " "; } |
Separate your html list elements with back slashes, commas, dots or whatever icon pleases you by using CSS.
1 2 3 4 |
li:nth-child(n+1):before { content: ", "; } li:first-child:before {content: " "; } |