Results 521 - 540 of 726

@document

The @document CSS at-rule restricts the style rules contained within it based on the URL of the document. It is designed primarily for user style sheets. A @document rule can specify one or more matching functions. If any of the functions apply to a URL, the rule will take effect on that URL.
At-rule CSS Reference

@import

The @import CSS at-rule is used to import style rules from other style sheets. These rules must precede all other types of rules, except @charset rules; as it is not a nested statement, @import cannot be used inside conditional group at-rules.
At-rule CSS Reference

@media

The @media CSS at-rule associates a set of nested statements, in a CSS block that is delimited by curly braces, with a condition defined by a media query. The @media at-rule may be used not only at the top level of a CSS, but also inside any CSS conditional-group at-rule.
At-rule CSS Reference

any-hover

any-hover is a CSS media feature that can be used to check whether any available input mechanism allows the user to hover over elements.
CSS NeedsExample Reference Référence

any-pointer

any-pointer is a CSS media feature that can be used to check whether any available input mechanism is a pointing device, and if so, how accurate it is.
CSS NeedsExample Reference Référence

device-height

device-height is a deprecated CSS media feature whose value is the height of the rendering surface of the output device, as a CSS <length>.
CSS NeedsBrowserCompatibility Reference Référence

inverted-colors

inverted-colors is a CSS media feature that can be used to check whether the user agent or underlying OS is inverting colors.
CSS NeedsBrowserCompatibility NeedsExample Reference

light-level

light-level is a CSS media feature that can be used to check the current ambient light level.
CSS NeedsBrowserCompatibility NeedsExample Reference

overflow-inline

overflow-inline is a CSS media feature which can be used to indicate whether content that overflows the viewport along the inline axis can be scrolled.
CSS NeedsBrowserCompatibility NeedsExample Reference

scripting

scripting is a CSS media feature that can be used to check whether scripting (e.g., JavaScript) is available.
CSS NeedsBrowserCompatibility NeedsExample Reference

update

update is a CSS media feature that can be used to check how quickly (if at all) the output device is able to modify the appearance of the content.
CSS NeedsBrowserCompatibility NeedsExample Reference

width

The width CSS descriptor is shorthand for setting both the min-width and the max-width of the viewport. By providing one viewport length value, that value will determine both the min-width and the max-width to the value provided.
Beginner CSS Reference

actual value

The actual value of a CSS property is the used value after all approximations have been applied. For example, a user agent may only be able to render borders with a integer pixel value and may be forced to approximate the computed width of the border.
CSS Guide Web

Common CSS questions

Browsers use the DOCTYPE declaration to choose whether to show the document using a mode that is more compatible  with Web standards or with old browser bugs. Using a correct and modern DOCTYPE declaration at the start of your HTML will improve browser standards compliance.
CSS Example Guide Web

Computed value

The computed value of a CSS property is computed from the specified value by:
CSS Guide Web