A CSS pseudo-class is a keyword added to a selector that lets you select elements based on information that lies outside of the document tree, such as a specific state of the selected element(s). For example, the pseudo-class :hover can be used to style a button when a user's pointer hovers over it.
/* Any button over which the user's pointer is hovering */
button:hover {
color: blue;
}A pseudo-class consists of a colon (:) followed by the pseudo-class name (e.g., :hover). A functional pseudo-class also contains a pair of parentheses to define the arguments (e.g., :dir()). The element that a pseudo-class is attached to is defined as an anchor element (e.g., button in case button:hover).
Pseudo-classes let you apply a style to an element not only in relation to the content of the document tree, but also in relation to external factors like the history of the navigator (:visited, for example), the status of its content (like :checked on certain form elements), or the position of the mouse (like :hover, which lets you know if the mouse is over an element or not).
Note: In contrast to pseudo-classes, pseudo-elements can be used to style a specific part of an element.
These pseudo-classes relate to the core identity of elements.
:definedMatches any element that is defined.
:headingMatches any heading element (<h1>-<h6>).
These pseudo-classes enable the selection of elements based on their display states.
:openMatches an element that can either be open or closed that is currently open.
:popover-openMatches a popover element that is currently in the showing state.
:modalMatches an element that is in a state in which it excludes all interaction with elements outside it until the interaction has been dismissed.
:fullscreenMatches an element that is currently in fullscreen mode.
:picture-in-pictureMatches an element that is currently in picture-in-picture mode.
:xr-overlayMatches the DOM overlay element during an immersive AR or VR session.
These pseudo-classes relate to form elements, and enable selecting elements based on HTML attributes and the state that the field is in before and after interaction.
:enabledRepresents a user interface element that is in an enabled state.
:disabledRepresents a user interface element that is in a disabled state.
:read-onlyRepresents any element that cannot be changed by the user.
:read-writeRepresents any element that is user-editable.
:placeholder-shownMatches an input element that is displaying placeholder text. For example, it will match the placeholder attribute in the <input> and <textarea> elements.
:autofillMatches when an <input> has been autofilled by the browser.
:defaultMatches one or more UI elements that are the default among a set of elements.
:checkedMatches when elements such as checkboxes and radio buttons are toggled on.
:indeterminateMatches UI elements when they are in an indeterminate state.
:blankMatches a user-input element which is empty, containing an empty string or other null input.
:validMatches an element with valid contents. For example, an input element with the type 'email' that contains a validly formed email address or an empty value if the control is not required.
:invalidMatches an element with invalid contents. For example, an input element with type 'email' with a name entered.
:in-rangeApplies to elements with range limitations. For example, a slider control when the selected value is in the allowed range.
:out-of-rangeApplies to elements with range limitations. For example, a slider control when the selected value is outside the allowed range.
:requiredMatches when a form element is required.
:optionalMatches when a form element is optional.
:user-validRepresents an element with correct input, but only when the user has interacted with it.
:user-invalidRepresents an element with incorrect input, but only when the user has interacted with it.
These pseudo-classes reflect the document language and enable the selection of elements based on language or script direction.
:dir()The directionality pseudo-class selects an element based on its directionality as determined by the document language.
:lang()Select an element based on its content language.
These pseudo-classes relate to links, and to targeted elements within the current document.
:any-linkMatches an element if the element would match either :link or :visited.
:linkMatches links that have not yet been visited.
:visitedMatches links that have been visited.
:local-linkMatches links whose absolute URL is the same as the target URL. For example, anchor links to the same page.
:targetMatches the element which is the target of the document URL.
:scopeRepresents elements that are a reference point for selectors to match against.
Note: A :target-within pseudo-class, to match elements that are or have a descendant which is the target of the document URL, was defined but removed from the specification. Use :has(:target) for this purpose.
These pseudo-classes apply to media that is capable of being in a state where it would be described as playing, such as a video.
:playingRepresents a playable element that is playing.
:pausedRepresents a playable element that is paused.
:seekingRepresents a playable element that is currently seeking a playback position in the media resource.
:bufferingRepresents a playable element that is playing but is temporarily stalled because it is downloading the media resource.
:stalledRepresents a playable element that is playing but is stalled because it cannot download the media resource.
:mutedRepresents a sound-producing element that is muted.
:volume-lockedRepresents a sound-producing element that has its volume level locked by the browser.
These pseudo-classes apply when viewing something which has timing, such as a WebVTT caption track.
:currentRepresents the element or ancestor of the element that is being displayed.
:pastRepresents an element that occurs entirely before the :current element.
:futureRepresents an element that occurs entirely after the :current element.
These pseudo-classes relate to the location of an element within the document tree.
:rootRepresents an element that is the root of the document. In HTML this is usually the <html> element.
:emptyRepresents an element with no children other than white-space characters.
:nth-child()Uses An+B notation to select elements from a list of sibling elements.
:nth-last-child()Uses An+B notation to select elements from a list of sibling elements, counting backwards from the end of the list.
:first-childMatches an element that is the first of its siblings.
:last-childMatches an element that is the last of its siblings.
:only-childMatches an element that has no siblings. For example, a list item with no other list items in that list.
:heading()Uses An+B notation to select heading elements (<h1>-<h6>).
:nth-of-type()Uses An+B notation to select elements from a list of sibling elements that match a certain type from a list of sibling elements.
:nth-last-of-type()Uses An+B notation to select elements from a list of sibling elements that match a certain type from a list of sibling elements counting backwards from the end of the list.
:first-of-typeMatches an element that is the first of its siblings, and also matches a certain type selector.
:last-of-typeMatches an element that is the last of its siblings, and also matches a certain type selector.
:only-of-typeMatches an element that has no siblings of the chosen type selector.
These pseudo-classes relate to the shadow DOM.
:hostMatches the shadow tree's shadow host.
:host()Matches an element that matches :host and matches any of the selectors in the list provided.
:host-context()Selects elements outside of the shadow tree in the context of the shadow host.
:has-slottedMatches slot elements that have been assigned content.
These pseudo-classes require some interaction by the user in order for them to apply, such as holding a mouse pointer over an element.
:hoverMatches when a user designates an item with a pointing device, such as holding the mouse pointer over the item.
:activeMatches when an item is being activated by the user. For example, when the item is clicked on.
:focusMatches when an element has focus.
:focus-visibleMatches when an element has focus and the user agent identifies that the element should be visibly focused.
:focus-withinMatches an element to which :focus applies, plus any element that has a descendant to which :focus applies.
:target-currentMatches the ::scroll-marker pseudo-element of a scroll-marker-group that is currently scrolled to, in other words, the active scroll marker.
When setting styles using a :hover, :active, or :focus-within pseudo-class selector, the selector matches a nested set of elements up the DOM tree. If the hierarchy includes an element in the top layer (for example, a popover or customizable <select> picker), the matching stops at that top-layer element.
For example, the following code features a customizable <select> element and a popover. We've set every element in the page to have a thick blue dashed border on hover.
<main>
<select>
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
<div>
<button popovertarget="mypopover">Toggle popover</button>
<section id="mypopover" popover>
<p>I am a popover</p>
<button>I am a popover button</button>
</section>
</div>
</main>select,
::picker(select) {
appearance: base-select;
}
:hover {
border: 5px dashed blue;
}Note that when you hover over the <select> element or the popover toggle button, all ancestors of those elements get the border. However, once the select picker or the popover is open, hovering over one of its descendants applies the border only up to the top-layer element itself (the select picker or the popover), that is, the matching stops at this element.
This behavior stops the pseudo-class matching from spilling out of a top-layer component into the surrounding page, which can otherwise cause a user interface to look broken.
These pseudo-classes accept a selector list or forgiving selector list as a parameter.
:is()The matches-any pseudo-class matches any element that matches any of the selectors in the list provided. The list is forgiving.
:not()The negation, or matches-none, pseudo-class represents any element that is not represented by its argument.
:where()The specificity-adjustment pseudo-class matches any element that matches any of the selectors in the list provided without adding any specificity weight. The list is forgiving.
:has()The relational pseudo-class represents an element if any of the relative selectors match when anchored against the attached element.
These pseudo-classes apply to custom elements.
:state()Matches custom elements that have the specified custom state.
These pseudo-classes relate to pages in a printed document and are used with the @page at-rule.
:leftRepresents all left-hand pages of a printed document.
:rightRepresents all right-hand pages of a printed document.
:firstRepresents the first page of a printed document.
:blankRepresents a blank page in a printed document.
These pseudo-classes relate to elements involved in a view transition.
:active-view-transitionMatches the root element of a document when a view transition is in progress (active) and stops matching once the transition has completed.
:active-view-transition-type()Matches the root element of a document when a specified view transition is in progress (active) and stops matching once the transition has completed.
selector:pseudo-class {
property: value;
}Like regular classes, you can chain together as many pseudo-classes as you want in a selector.
Pseudo-classes defined by a set of CSS specifications include the following:
A
B
:blank (input) :blank (page):bufferingC
D
E
F
H
I
L
M
N
O
P
R
S
T
U
V
W
X
Non-standard vendor-prefixed pseudo-classes include:
-moz- prefix:-moz-broken:-moz-drag-over:-moz-first-node:-moz-handler-blocked:-moz-handler-crashed:-moz-handler-disabled:-moz-last-node:-moz-loading:-moz-locale-dir(ltr):-moz-locale-dir(rtl):-moz-only-whitespace:-moz-submit-invalid:-moz-suppressed:-moz-user-disabled:-moz-window-inactive