Results 541 - 560 of 726

Detecting CSS animation support

CSS animations make it possible to do creative animations of content using nothing but CSS. However, there are likely to be times when this feature isn't available, and you may wish to handle that case by using JavaScript code to simulate a similar effect. This article, based on this blog post by Chris Heilmann, demonstrates a technique for doing this.
Advanced Animation CSS

Box-shadow generator

This tool lets you construct CSS box-shadow effects, to add box shadow effects to your CSS objects.
box-shadow CSS3 Tools

Consistent list indentation

One of the most common style changes made to lists is a change in the indentation distance—that is, how far the list items are pushed over to the right. This often leads to frustration, because what works in one browser often doesn't have the same effect in another. For example, if you declare that lists have no left margin, they move over in Internet Explorer, but sit stubbornly in place in Gecko-based browsers.This article will help you understand the problems that can occur and how to avoid them.
CSS Guide Intermediate NeedsUpdate

CSS Miscellaneous

These pages contain CSS properties that are highly experimental or don't fit in any other categories.
CSS Overview Reference

Using URL values for the cursor property

Gecko 1.8 (Firefox 1.5, SeaMonkey 1.0) supports URL values for the CSS cursor property on Windows and Linux. Mac support was added in Gecko 2 (Firefox 4). This allows specifying arbitrary images as mouse cursors — any image format supported by Gecko can be used.
CSS Gecko Reference Référence

inheritance

The summary of every CSS property definition says whether that property is inherited by default ("Inherited: Yes") or not inherited by default ("Inherited: no"). This controls what happens when no value is specified for a property on an element.
CSS Guide Web

initial value

The initial value given in the summary of the definition of each CSS property has different meaning for inherited and non-inherited properties.
CSS Guide Web

marker-offset

The marker-offset CSS property describes the distance between the nearest border edges of a marker-box and the target node.
CSS NeedsBrowserCompatibility NeedsMobileBrowserCompatibility

repeating-linear-gradient()

The CSS repeating-linear-gradient function creates an <image> consisting of repeating gradients. It works similarly to the basic linear gradients as described by linear-gradient(), and takes the same arguments. However, it automatically repeats the color stops infinitely in both directions. The color stops' positions shift by multiples of the length of a basic linear gradient (the difference between the last color stops' position and the first).
CSS CSS Function CSS Image css3-images Graphics Layout Reference Web

Shorthand properties

Shorthand properties are CSS properties that let you set the values of several other CSS properties simultaneously. Using a shorthand property, a Web developer can write more concise and often more readable style sheets, saving time and energy.
CSS Guide Web

text-decoration-skip

The text-decoration-skip property specifies how text decorations should be applied to types of elements and characters.
CSS Property Reference

<transform-function>

The <transform-function> CSS data type denotes a function applied to an element's representation in order to modify it. Usually such transform may be expressed by matrices and the resulting images can be determined using matrix multiplication on each point.
CSS CSS Data Type CSS Reference CSS Transforms Layout Reference Web

Used value

The used value of any CSS property is the final value of that property after all calculations have been performed. For some properties, used values can be retrieved by calling window.getComputedStyle. Dimensions (e.g., width, line-height) are all in pixels, shorthand properties (e.g., background) are consistent with their component properties (e.g., background-colordisplay) and consistent with position and float, and every CSS property has a value.
CSS Guide Web

StyleSheet.disabled

The StyleSheet.disabled property indicates whether the style sheet is prevented from applying to the document. A style sheet may be disabled by manually setting this property to true or if it's an inactive alternative style sheet. Note that disabled == false does not guarantee the style sheet is applied (it could be removed from the document, for instance).
CSS CSSOM Property Reference

::before (:before)

::before creates a pseudo-element that is the first child of the element matched. It is often used to add cosmetic content to an element by using the content property. This element is inline by default.
CSS CSS Pseudo-element Layout NeedsMobileBrowserCompatibility Reference Web

::first-letter (:first-letter)

The ::first-letter CSS pseudo-element selects the first letter of the first line of a block, if it is not preceded by any other content (such as images or inline tables) on its line.
CSS CSS Pseudo-element Layout NeedsMobileBrowserCompatibility Reference Web

::first-line (:first-line)

The ::first-line CSS pseudo-element applies styles only to the first line of an element. The amount of the text on the first line depends of numerous factors, like the width of the element, width of the document, and the font size of the text. As all pseudo-elements, ::first-line does not match any real HTML element.
CSS CSS Pseudo-element Layout NeedsMobileBrowserCompatibility Reference Référence Web

::-moz-page

The ::-moz-page CSS pseudo-element applies to an individual page in print or print preview.
CSS CSS Reference NeedsCompatTable NeedsContent NeedsExample Non-standard