Curriculum
Course: CSS
Login

Curriculum

CSS

CSS INTRODUCTION

0/1

CSS Selectors

0/1

CSS Comments

0/1

CSS Padding

0/1

CSS Box Model

0/1

CSS Combinators

0/1

CSS Pseudo-classes

0/1

CSS Pseudo-elements

0/1

CSS Dropdowns

0/1

CSS Image Gallery

0/1

CSS Image Sprites

0/1

CSS Counters

0/1

CSS Website Layout

0/1

CSS Specificity

0/1

CSS Math Functions

0/1
Text lesson

CSS Pseudo-classes

What are Pseudo-classes?

A pseudo-class is utilized to specify a particular state of an element.

For instance, it can be employed to:

It can be utilized to:

  • Apply styles to an element when a user hovers over it
  • Distinguish between visited and unvisited links with different styles
  • Style an element when it gains focus

Image

Syntax

The syntax of pseudo-classes:

selector:pseudo-class {
  property: value;
}

Anchor Pseudo-classes

Links can have various visual presentations.

a:link {
  color: #FF0000;
}

/* visited link */
a:visited {
  color: #00FF00;
}

/* mouse over link */
a:hover {
  color: #FF00FF;
}

/* selected link */
a:active {
  color: #0000FF;
}

Ensure that in CSS definitions, a:hover follows a:link and a:visited to be functional. Similarly, a:active should come after a:hover for effectiveness. Pseudo-class names are not case-sensitive.

Pseudo-classes and HTML Classes

When combined with HTML classes, pseudo-classes can modify element styles. In the provided example, hovering over the link triggers a color change.

Example

a.highlight:hover {
  color: #ff0000;
}

 

Hover on <div>

Here’s an example of applying the :hover pseudo-class to a <div> element:

Example

div:hover {
  background-color: blue;
}

Simple Tooltip Hover

To display a <p> element (like a tooltip) when hovering over a <div> element, do the following:

Example

{
  display: none;
  background-color: yellow;
  padding: 20px;
}

div:hover p {
  display: block;
}

CSS – The :first-child Pseudo-class

The :first-child pseudo-class selects an element that is the first child of its parent element.

Match the first <p> element

In this example, the selector targets any <p> element that serves as the first child of its parent.

 

Example

p:first-child {
  color: blue;
}

Match the first <i> element in all <p> elements

In this example, the selector targets the first <i> element within every <p> element.

Example

p i:first-child {
  color: blue;
}

Match all <i> elements in all first child <p> elements

In this example, the selector targets all <i> elements within <p> elements that serve as the first child of their parent.

Example

p:first-child i {
  color: blue;
}

CSS – The :lang Pseudo-class

The :lang pseudo-class enables the specification of unique rules for various languages.

In the example below, :lang sets the quotation marks for <q> elements with the lang attribute set to “no”.

Example

<html>
<head>
<style>
q:lang(no) {
  quotes: “~” “~”;
}
</style>
</head>
<body>

<p>Some text <q lang=”no”>A quote in a paragraph</q> Some text.</p>

</body>
</html>

All CSS Pseudo Classes

Selector

Example

Example description

:active

a:active

Selects the active link.

:checked

input:checked

Selects all checked <input> element

disabled

input:disabled

Selects all disabled <input> element

:empty

p:empty

Selects all <p> element that has no children

:enabled

input:enabled

Selects all enabled <input> element

:first-child

p:first-child

Selects all <p> elements that is the first child of its parent

:first-of-type

p:first-of-type

Selects all <p> element that is the first <p> element of its parent

:focus

input:focus

Selects the <input> element that is focus

:hover

a:hover

Selects links when the mouse hovers over them.

:in-range

input:in-range

Selects `<input>` elements with a value in a specified range.

:invalid

input:invalid

Selects all `<input>` elements with an invalid value.

:lang(language)

p:lang(it)

Selects every `<p>` element with a `lang` attribute value that starts with “it”.

:last-child

p:last-child

Selects every `<p>` element that is the last child of its parent.

:last-of-type

p:last-of-type

Selects every `<p>` element that is the last `<p>` element of its parent.

:link

a:link

Selects all links that have not been visited.

:not(selector)

:not(p)

Selects every element that is not a `<p>` element.

:nth-child(n)

p:nth-child(2)

Selects every `<p>` element that is the second child of its parent.

:nth-last-child(n)

p:nth-last-child(2)

Selects every `<p>` element that is the second child of its parent, counting from the last child.

:nth-last-of-type(n)

p:nth-last-of-type(2)

Selects every `<p>` element that is the second `<p>` element of its parent, counting from the last child.

:nth-of-type(n)

p:nth-of-type(2)

Selects every `<p>` element that is the second occurrence within its parent.

:only-of-type

p:only-of-type

Selects every `<p>` element that is the sole `<p>` element within its parent.

:only-child

p:only-child

Selects every `<p>` element that is the sole child of its parent.

:optional

input:optional

Selects `<input>` elements without a “required” attribute.

:out-of-range

input:out-of-range

Selects `<input>` elements with a value outside of a specified range.

:read-only

input:read-only

Selects `<input>` elements where the “readonly” attribute is specified.

:read-write

input:read-write

Selects `<input>` elements without a “readonly” attribute.

:required

input:required

Selects `<input>` elements where the “required” attribute is specified.

:root

root

Selects the root element of the document.

:target

#news:target

Selects the currently active #news element (clicked on a URL containing that anchor name).

:valid

input:valid

Selects all `<input>` elements with a valid value.

:visited

a:visited

Selects all links that have been visited.

All CSS Pseudo Elements

Selector

Example

Example description

::after

p::after

Insert content before every <p> element

::before

p::before

Insert content preceding every `<p>` element.

::first-letter

p::first-letter

Selects the initial letter of each `<p>` element.

::first-line

p::first-line

Selects the opening line of each `<p>` element.

::marker

::marker

Selects the bullet points or numbering of list items.

::selection

p::selection

Selects the part of an element that a user has highlighted or chosen.