Should I use single colons (:) or double colons (::) for before, after, first-letter and first-line pseudo-elements?

For what it’s worth, Selectors 4 now explicitly instructs1 authors to use double colons for all pseudo-elements, including CSS1 and CSS2 pseudo-elements, going forward (emphasis mine):

Because CSS Level 1 and CSS Level 2 conflated pseudo-elements and pseudo-classes by sharing a single-colon syntax for both, user agents must also accept the previous one-colon notation for the Level 1 & 2 pseudo-elements (::before, ::after, ::first-line, and ::first-letter). This compatibility notation is not allowed any other pseudo-elements. However, as this syntax is deprecated, authors should use the Level 3+ double-colon syntax for these pseudo-elements.

This means that the only appropriate use of the single-colon syntax today is if you absolutely require legacy browser support — the only browser that matters here is IE8 and older. If you don’t, you should use the double-colon syntax for the sake of consistency with newer pseudo-elements which will only accept double colons. Besides, it’s quite pointless to use the single-colon syntax if, for instance, you’re going to apply properties that aren’t supported by IE8 anyway, such as border-radius or box-shadow, to your ::before and ::after pseudo-elements.

I’d like to believe that Selectors 3 at the very least implied this in its statement that the single-colon syntax does not apply to any newer pseudo-elements, but having this sort of thing stated in black and white never hurt anybody and it’s good to know that the upcoming standard does just that.

Also, there is absolutely no reason to write duplicate rules with both notations in the same stylesheet (e.g. :before, :after { ... } ::before, ::after { ... }), as no browser in existence supports the new syntax without supporting the older one.


1 I say this fully aware that it probably didn’t state this yet at the time this question was asked — the May 2013 WD certainly did not.

Leave a Comment