Results 21 - 40 of 54

:read-write

The :read-write CSS pseudo-class matches when an element is editable by user like text input elements.
CSS CSS Pseudo-class Layout Reference Web

:target

The :target pseudo-class represents the unique element, if any, with an id matching the fragment identifier of the URI of the document.
CSS CSS Pseudo-class Layout Reference Web

:default

The :default CSS pseudo-class represents any user interface element that is the default among a group of similar elements.
CSS CSS Pseudo-class Layout NeedsMobileBrowserCompatibility Reference Web

:first

The :first @page CSS pseudo-class describes the styling of the first page when printing a document.
CSS CSS Pseudo-class Layout NeedsMobileBrowserCompatibility Reference Web

:fullscreen

The :fullscreen CSS pseudo-class applies to any element that's currently being displayed in full-screen mode. It selects not only to the top level element, but to the whole stack of elements that appears.
CSS CSS Pseudo-class Experimental Full-screen Reference

:hover

The :hover CSS pseudo-class matches when the user designates an element with a pointing device, but does not necessarily activate it. This style may be overridden by any other link-related pseudo-classes, that is :link, :visited, and :active, appearing in subsequent rules. In order to style appropriately links, you need to put the :hover rule after the :link and :visited rules but before the :active one, as defined by the LVHA-order: :link:visited:hover:active.
CSS CSS Pseudo-class Layout NeedsMobileBrowserCompatibility Reference Référence Web

:invalid

The :invalid CSS pseudo-class represents any <input> or <form> element whose content fails to validate according to the input's type setting. This allows you to easily have invalid fields adopt an appearance that helps the user identify and correct errors.
CSS CSS Pseudo-class Layout NeedsMobileBrowserCompatibility Reference Web

:last-child

The :last-child CSS pseudo-class represents any element that is the last child element of its parent.
CSS CSS Pseudo-class Layout Reference Référence Web

:left

The :left CSS page pseudo-class matches any left page when printing a page. It allows to describe the styling of left-side pages.
CSS CSS Pseudo-class Layout NeedsMobileBrowserCompatibility Reference Web

:link

The :link CSS pseudo-class lets you select links inside elements. This will select any link which has not yet been visited, even those already styled using selector with other link-related pseudo-classes like :hover, :active or :visited. In order to appropriately style links, you need to put the :link rule before the other ones, as defined by the LVHA-order: :link:visited:hover:active. The :focus pseudo-class is usually placed right before or right after :hover, depending on the expected effect.
CSS CSS Pseudo-class Layout Reference Référence Web

:-moz-system-metric(scrollbar-end-backward)

The :-moz-system-metric(scrollbar-end-backward) CSS pseudo-class will match an element if the computer's user interface includes a backward arrow button at the end of scrollbars.
CSS CSS Pseudo-class CSS Reference NeedsContent NeedsExample Non-standard

:-moz-system-metric(scrollbar-end-forward)

The :-moz-system-metric(scrollbar-end-forward) CSS pseudo-class will match an element if the computer's user interface includes a forward arrow button at the end of scrollbars.
CSS CSS Pseudo-class CSS Reference NeedsContent NeedsExample Non-standard

:-moz-system-metric(scrollbar-start-backward)

The :-moz-system-metric(scrollbar-start-backward) CSS pseudo-class will match an element if the computer's user interface includes a backward arrow button at the start of scrollbars.
CSS CSS Pseudo-class CSS Reference NeedsContent NeedsExample Non-standard

:-moz-system-metric(scrollbar-start-forward)

The :-moz-system-metric(scrollbar-start-forward) CSS pseudo-class will match an element if the computer's user interface includes a forward arrow button at the start of scrollbars.
CSS CSS Pseudo-class CSS Reference NeedsContent NeedsExample Non-standard

:-moz-system-metric(scrollbar-thumb-proportional)

The :-moz-system-metric(scrollbar-thumb-proportional) CSS pseudo-class will match an element if the computer's user interface uses proportional scrollbar thumbs; that is, the draggable thumb on the scrollbar resizes to indicate the relative size of the visible area of the document.
CSS CSS Pseudo-class CSS Reference NeedsContent NeedsExample Non-standard

:-moz-system-metric(touch-enabled)

The :-moz-system-metric(touch-enabled) CSS pseudo-class will match an element if the device on which the content is being rendered offers a supported touch-screen interface.
CSS CSS Pseudo-class CSS Reference NeedsContent NeedsExample Non-standard

:-moz-system-metric(windows-default-theme)

The :-moz-system-metric(windows-default-theme) CSS pseudo-class matches an element if the user is currently using one of the following themes in Windows: Luna, Royale, Zune, or Aero (i.e., Vista Basic, Vista Standard, or Aero Glass). This will exclude Windows Classic themes as well as third-party themes.
CSS CSS Pseudo-class CSS Reference NeedsMobileBrowserCompatibility Non-standard

:-moz-ui-valid

The :-moz-ui-valid CSS pseudo-class represents any validated form element whose value validates correctly based on its validation constraints.
CSS CSS Pseudo-class CSS Reference NeedsExample NeedsMobileBrowserCompatibility Non-standard

:not()

The negation CSS pseudo-class, :not(X), is a functional notation taking a simple selector X as an argument. It matches an element that is not represented by the argument. X must not contain another negation selector.
CSS CSS Pseudo-class Layout Reference Référence Web