Pseudo superpowers with CSS

2020-08-08

When folks are learning HTML, CSS, and web development in general, the concepts of elements, classes, and selectors are all taught early on, and often grasped quickly. But what about their weird, colon-prefixed cousins that are often avoided and misunderstood?


Let's recap some foundational pieces:

Lloyd sarcastically mouthing "uh yeah" from Dumb and Dumber


Let's get into it:



Here's what that would look like in the wild: Alt Text Alt Text ā˜ļø Those are some big honkin gifs, so give 'em a sec

And after those updates, the HTML in the inspector will show this: Alt Text


::before and ::after are unique in the sense that they accept a "content" property. Without this property, the pseudo-element will not be style-able by your CSS. Often you will see content: "" if the pseudo-element is only needed for styling. This is called generated content.


If you hear the term pseudo-selector, it is an umbrella term covering both pseudo-element-selectors and pseudo-class-selectors. You can always tell the difference by checking to see how many colons there are. One for pseudo-class, two for pseudo-element.

caveat from MDN: As a rule, double colons (::) should be used instead of a single colon (:). This distinguishes pseudo-classes from pseudo-elements. However, since this distinction was not present in older versions of the W3C spec, most browsers support both syntaxes for the original pseudo-elements.

Thanks for reading! If you're interested in learning more, MDN has all the goodies (as per usual). šŸ»

Related:

CSS

Back to Home