Results 41 - 60 of 326

animation-name

The animation-name CSS property specifies a list of animations that should be applied to the selected element. Each name indicates a @keyframes at-rule that defines the property values for the animation sequence.
CSS CSS Animations CSS Property Experimental Reference

background

The background CSS property is a shorthand for setting the individual background values in a single place in the style sheet. background can be used to set the values for one or more of: background-clip, background-color, background-image, background-origin, background-position, background-repeat, background-size, and background-attachment.
CSS CSS Background CSS Property Reference

background-attachment

If a background-image is specified, the background-attachment CSS property determines whether that image's position is fixed within the viewport, or scrolls along with its containing block.
CSS CSS Background CSS Property Reference

background-clip

The background-clip CSS property specifies whether an element's background, either the color or image, extends underneath its border.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-image

The CSS background-image property sets one or several background images for an element. The images are drawn on stacking context layers on top of each other. The first layer specified is drawn as if it is closest to the user.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-origin

The background-origin CSS property determines the background positioning area, that is the position of the origin of an image specified using the background-image CSS property.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-position

The background-position CSS property sets the initial position for each defined background image, relative to the background position layer defined by background-origin.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-position-y

The background-position-y CSS property sets the initial vertical position, relative to the background position layer defined by background-origin for each defined background image. For more information, see the background-position property, which has been widely supported for much longer.
CSS CSS Background CSS Property Experimental Reference

background-repeat

The background-repeat CSS property defines how background images are repeated. A background image can be repeated along the horizontal axis, the vertical axis, both axes, or not repeated at all.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

background-size

The background-size CSS property specifies the size of the background images. The size of the image can be fully constrained or only partially in order to preserve its intrinsic ratio.
CSS CSS Background CSS Property NeedsMobileBrowserCompatibility Reference

border-bottom

The border-bottom CSS property is a shorthand that sets the values of border-bottom-color, border-bottom-style, and border-bottom-width. These properties describe the bottom border of elements.
CSS CSS Borders CSS Property Reference

border-bottom-color

The border-bottom-color CSS property sets the color of the bottom border of an element. Note that in many cases the shorthand CSS properties border-color or border-bottom are more convenient and preferable.
CSS CSS Borders CSS Property Reference

border-bottom-left-radius

The border-bottom-left-radius CSS property sets the rounding of the bottom-left corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.
CSS CSS Borders CSS Property NeedsMobileBrowserCompatibility Reference

border-bottom-right-radius

The border-bottom-right-radius CSS property sets the rounding of the bottom-right corner of the element. The rounding can be a circle or an ellipse, or if one of the value is 0 no rounding is done and the corner is square.
CSS CSS Borders CSS Property NeedsMobileBrowserCompatibility Reference

border-bottom-style

The border-bottom-style CSS property sets the line style of the bottom border of a box.
CSS CSS Borders CSS Property Reference

border-color

The border-color CSS property is a shorthand for setting the color of the four sides of an element's border: border-top-color, border-right-color, border-bottom-color, border-left-color
CSS CSS Borders CSS Property Reference

border-image

The border-image CSS property allows drawing an image on the borders of elements. This makes drawing complex looking widgets much simpler than it has been and removes the need for nine boxes in some cases. The border-image is used instead of the border styles given by the border-style properties. Though the specification requires that border-style must be present if border-image is used, some browsers many not implement this.
CSS CSS Borders CSS Property Reference

border-image-outset

The border-image-outset property describes by what amount the border image area extends beyond the border box.
CSS CSS Borders CSS Property NeedsExample Reference