Forums

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

Home Forums CSS [SOLVED] CSS-trick: Auto-magically add colon to your labels Re: [SOLVED] CSS-trick: Auto-magically add colon to your labels

#102997
alexh58
Participant

Well if I understand the question correctly, you could do this…

label:not(.checkbox):after { content: ":"; }​

Does that help?