Skip to main content

CSS Basics

Syntax

tag [attributes] #id .class :pseudo-class ::pseudo-element {
property: value;
}

/* comments */

Simple Selectors

NameSelectorExampleExample description
Class.class.introelements with class="intro"
ID#id#firstnameelement with id="firstname"
Universal**Selects all elements
Elementelementp<p> elements
Grouping Selectorelement,element,..div, p<div> and <p> elements

Combinators

A CSS selector can contain more than one simple selector. Between the simple selectors, we can include a combinator.

NameSelectorExampleExample description
Descendantelement elementdiv p<p> elements inside <div> elements
Childelement > elementdiv > p<p> elements where the parent is a <div> element
Adjacent Siblingelement + elementdiv + p<p> elements that are placed immediately after <div> elements
General Siblingelement1 ~ element2p ~ ul<ul> element that are preceded by a <p> element

Pseudo-classes

SelectorExampleExample description
:activea:activeSelects the active link
:checkedinput:checkedSelects every checked <input> element
:disabledinput:disabledSelects every disabled <input> element
:emptyp:emptySelects every <p> element that has no children
:enabledinput:enabledSelects every enabled <input> element
:first-childp:first-childSelects every <p> elements that is the first child of its parent
:first-of-typep:first-of-typeSelects every <p> element that is the first <p> element of its parent
:focusinput:focusSelects the <input> element that has focus
:hovera:hoverSelects links on mouse over
:in-rangeinput:in-rangeSelects <input> elements with a value within a specified range
:invalidinput:invalidSelects all <input> elements with an invalid value
:lang(language)p:lang(it)Selects every <p> element with a lang attribute value starting with "it"
:last-childp:last-childSelects every <p> elements that is the last child of its parent
:last-of-typep:last-of-typeSelects every <p> element that is the last <p> element of its parent
:linka:linkSelects all unvisited links
: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 <p> element of its parent
:only-of-typep:only-of-typeSelects every <p> element that is the only <p> element of its parent
:only-childp:only-childSelects every <p> element that is the only child of its parent
:optionalinput:optionalSelects <input> elements with no "required" attribute
:out-of-rangeinput:out-of-rangeSelects <input> elements with a value outside a specified range
:read-onlyinput:read-onlySelects <input> elements with a "readonly" attribute specified
:read-writeinput:read-writeSelects <input> elements with no "readonly" attribute
:requiredinput:requiredSelects <input> elements with a "required" attribute specified
:rootrootSelects the document's root element
:target#news:targetSelects the current active #news element (clicked on a URL containing that anchor name)
:validinput:validSelects all <input> elements with a valid value
:visiteda:visitedSelects all visited links

Pseudo Elements

SelectorExampleExample description
::afterp::afterInsert content after every <p> element
::beforep::beforeInsert content before every <p> element
::first-letterp::first-letterSelects the first letter of every <p> element
::first-linep::first-lineSelects the first line of every <p> element
::selectionp::selectionSelects the portion of an element that is selected by a user

::first-line

Note: The ::first-line pseudo-element can only be applied to block-level elements.

Available properties:

  • font properties
  • color properties
  • background properties
  • word-spacing
  • letter-spacing
  • text-decoration
  • vertical-align
  • text-transform
  • line-height
  • clear

::first-letter

Note: ::first-letter pseudo-element can only be applied to block-level elements.

Available properties:

  • font properties
  • color properties
  • background properties
  • margin properties
  • padding properties
  • border properties
  • text-decoration
  • vertical-align (only if "float" is "none")
  • text-transform
  • line-height
  • float
  • clear

::selection

Available properties:

  • color
  • background
  • cursor
  • outline