Skip to main content
whitep4nth3r logo

31 Aug 2022

3 min read

What's the difference between : and :: in CSS?

I spent years Googling this question before the information stayed in my brain. Sound familiar? Then this post is for you.

I spent years Googling “the difference between : and :: in CSS” before the information stayed in my brain. Sound familiar? Then this post is for you.

First up: if you need a quick answer to the title of this blog post then look no further!

  • : refers to pseudo-classes, such as :visited or :hover

  • :: is for pseudo-elements, such as ::first-of-type or ::after

And if you want a more detailed explanation, let’s dive into some examples.

What does “pseudo” mean?

The English definition of the word pseudo is “fake” or “not real”. So what on earth do we mean by fake classes and fake elements? Pseudo-classes and pseudo-elements are not manually written into HTML and don’t appear in the DOM (or document tree), but instead are created by CSS!

What’s a pseudo-class?

Pseudo-classes allow you to select elements in CSS based on information outside of the HTML written on the page, such as user interaction or information stored in the browser. Pseudo-classes are accessed by a single colon (:) followed by the pseudo-class name.

You can use pseudo-classes to style an element based on its state. You might often see links you’ve visited on a page appear as a different colour. This is achieved by targeting the :visited pseudo-class of an anchor tag (a) in CSS to style it.

a:visited {
color: #c58af9;
}

You can observe this in action on Google’s search engine. Head on over to google.com and search for something you know you’ve visited. Open up the browser dev tools, and find the a:visited selector in the CSS inspector.

Screenshot of dark mode google search results showing the link to the top site I have visited is purple, and the second site in the list which I have not visited, which is blue. Dev tools is open and shows the anchor visited styles coming from the stylesheet.

As well as being affected by browser information such as visited links, pseudo-classes can also be affected (added or removed) by user actions on the page, such as hovering over or focussing on elements. Here’s the :hover pseudo-class in action on Google search results.

a:hover {
text-decoration: underline;
}
Screenshot of google search results showing I am hovering over the top result, which is adding an underline to the link. Dev tools are open showing the style applied using the hover pseudo class.

To read more about the different types of pseudo-classes available to target in CSS, you can check out the extensive documentation on MDN.

What’s a pseudo-element?

Pseudo-element selectors allow you to use CSS to style a specific part of a DOM element. Pseudo-elements are accessed by a double colon (::) followed by the pseudo-element selector. Unlike pseudo-classes, pseudo-elements cannot be used to style an element according to its state.

Here’s an example. Often, article-based websites use “drop caps”, a print convention that has existed for thousands of years, which uses a very large single letter to mark the start of a block of text. You can achieve this by targeting the ::first-letter pseudo-element in CSS.

p::first-letter {
font-size: 300%;
}

Here’s a visual example showing how drop caps would look on my blog posts.

A blog post on my site showing a large uppercase letter E at the start of a paragraph

You can also choose to target the first line of an element, using the ::first-line selector.

p::first-line {
font-size: 300%;
}

Other common pseudo-element selectors you might use in your CSS files include:

  • ::before

  • ::after

  • ::first-of-type

  • ::last-of-type

  • and ::placeholder.

Read more about the different types of pseudo-elements available to target in CSS on the official MDN documentation.

And that’s it! May this be the last time you google the difference between : and :: in CSS!

Like weird newsletters?

Join undefined subscribers in the Weird Wide Web Hole to find no answers to questions you didn't know you had.

Subscribe

Salma sitting cross legged on a sofa, holding a microphone, looking up into the right of the space.

Salma Alam-Naylor

I'm a live streamer, software engineer, and developer educator. I help developers build cool stuff with blog posts, videos, live coding and open source projects.

Related posts

16 May 2021

How to make your font sizes accessible with CSS

Here's how to make sure your website respects font size preferences specified in browser settings using two important CSS concepts.

Tutorials 3 min read →

6 Feb 2022

Debug your CSS layouts with this one simple trick

Are you battling with layouts in CSS? Use this one line of CSS to help you debug what's up and get you back on the road to success.

CSS 2 min read →