Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

24. CSS - Pseudo-elements

Lesson 24 of 34 in the free CSS Customization: Zero to Hero notes on Siksha Sarovar, written by Rohit Jangra.

CSS Pseudo-elements

A CSS pseudo-element is used to style specified parts of an element. For example, it can be used to:

  • Style the first letter, or line, of an element.
  • Insert content before, or after, the content of an element.

Syntax

selector::pseudo-element {
  property: value;
}

The ::first-line Pseudo-element

Used to add a special style to the first line of a text.

p::first-line {
  color: #ff0000;
  font-variant: small-caps;
}

The ::first-letter Pseudo-element

Used to add a special style to the first letter of a text.

p::first-letter {
  color: #ff0000;
  font-size: xx-large;
}

The ::before Pseudo-element

Used to insert some content before the content of an element.

h1::before {
  content: url(smiley.gif);
}

The ::after Pseudo-element

Used to insert some content after the content of an element.

h1::after {
  content: url(smiley.gif);
}

The ::selection Pseudo-element

Matches the portion of an element that is selected by a user (highlighted text).

::selection {
  color: red;
  background: yellow;
}