Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] ::after selector, get rid of last item ::after selector Reply To: [Solved] ::after selector, get rid of last item ::after selector

#183343
trongnguyen24
Participant

Hi marcustis,

You can user this CSS

#list a {
padding-right: 5px;
color: blue;
text-decoration: none;

}
#list a:last-child::after {
content: ”
}

#list a::after {
content: ‘ , ‘
}