z index
The z-index CSS property specifies the z-order of an element and its descendants. When elements overlap, z-order determines which one covers the other. An element with a larger z-index generally covers an element with...
CSS Reference (s to z)
The z-index CSS property specifies the z-order of an element and its descendants. When elements overlap, z-order determines which one covers the other. An element with a larger z-index generally covers an element with...
Specify that the space between words in paragraphs should be n pixels: Example (spacing with 10px) Output: the quick brown red fox jumps over the lazy dog Example (spacing with 30px) Output: the quick...
The width CSS property specifies the width of the content area of an element. The content area is inside the padding, border, and margin of the element. The min-width and max-width properties override...
The widows CSS property defines how many minimum lines must be left on top of a new page, on a paged media. In typography, a widow is the last line of a paragraph appearing...
The white-space CSS property is used to to describe how whitespace inside the element is handled. Values normal Sequences of whitespace are collapsed. Newline characters in the source are handled as other whitespace. Breaks...
The :visited CSS pseudo-class lets you select only links that have been visited. This style may be overridden by any other link-related pseudo-classes, that is :link, :hover, and :active, appearing in subsequent rules. In...
The visibility CSS property has two purposes: 1) The hidden value hides an element but leaves space where it would have been.   2) The collapse value hides rows or columns of a...
The vertical-align CSS property specifies the vertical alignment of an inline or table-cell element. Values vertical-align: baseline /* keyword values */ vertical-align: sub vertical-align: super vertical-align: text-top vertical-align: text-bottom vertical-align: middle vertical-align: top vertical-align:...
The unicode-bidi CSS property together with the direction property relates to the handling of bidirectional text in a document. For example, if a block of text contains both left-to-right and right-to-left text then the...
The transition-duration CSS property specifies the number of seconds or milliseconds a transition animation should take to complete. By default, the value is 0s, meaning that no animation will occur.
The transition-delay CSS property specifies the amount of time to wait between a change being requested to a property that is to be transitioned and the start of the transition effect. A value...
The top CSS property specifies part of the position of positioned elements. It has no effect on non-positioned elements.
The text-transform CSS property specifies how to capitalize an element’s text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. Syntax text-transform: capitalize text-transform: uppercase text-transform:...
The text-shadow CSS property adds shadows to text. It accepts a comma-separated list of shadows to be applied to the text and text-decorations of the element. Each shadow is specified as an offset...
The text-overflow CSS property determines how overflowed content that is not displayed is signaled to the users. It can be clipped, display an ellipsis (Horizontal Ellipsis) or a Web author-defined string.
The text-indent CSS property specifies how much horizontal space should be left before the beginning of the first line of the text content of an element. Horizontal spacing is with respect to the left...