Comma-Separated Lists
Separate list elements with commas but not the last one:
ul > li:not(:last-child)::after {
content: ",";
}
Example
- Hello,
- There,
- Comma
Source: AllThingsSmitty
Separate list elements with commas but not the last one:
ul > li:not(:last-child)::after {
content: ",";
}
Source: AllThingsSmitty